/*
Theme Name: GlassCommerce
Theme URI: https://example.com/glasscommerce
Author: OpenAI
Description: Modern RTL WooCommerce theme with a glass interface, graphical mega menu, mobile category drawer and marketplace-style storefront.
Version: 1.6.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: glasscommerce
Tags: e-commerce, rtl-language-support, custom-logo, custom-menu, featured-images, responsive-layout
*/

:root {
  --gc-bg: #f4f6f8;
  --gc-surface: rgba(255, 255, 255, .78);
  --gc-surface-strong: rgba(255, 255, 255, .94);
  --gc-text: #20242f;
  --gc-muted: #717784;
  --gc-primary: #00b86b;
  --gc-primary-2: #6c5ce7;
  --gc-primary-soft: color-mix(in srgb, var(--gc-primary) 11%, transparent);
  --gc-border: rgba(255, 255, 255, .88);
  --gc-line: rgba(28, 34, 48, .08);
  --gc-shadow: 0 18px 55px rgba(32, 42, 70, .12);
  --gc-shadow-soft: 0 10px 32px rgba(32, 42, 70, .08);
  --gc-radius: 22px;
  --gc-radius-sm: 15px;
  --gc-container: 1320px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gc-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(108, 92, 231, .10), transparent 25%),
    radial-gradient(circle at 92% 4%, rgba(0, 184, 107, .11), transparent 26%),
    var(--gc-bg);
  font-family: Vazirmatn, Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.8;
}
body.gc-menu-open,
body.gc-cart-open,
body.gc-mega-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button,
input { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gc-container { width: min(calc(100% - 32px), var(--gc-container)); margin-inline: auto; }
.gc-glass {
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  box-shadow: var(--gc-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.gc-mobile-only { display: none !important; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; padding: 10px 0; }
.gc-header-shell { position: relative; overflow: visible; padding: 9px 14px 0; border-radius: 25px; }
.gc-header-main {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(185px, 255px) minmax(300px, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.gc-brand { min-width: 0; display: flex; align-items: center; gap: 11px; }
.gc-brand-logo,
.gc-brand-logo .custom-logo-link { display: flex; align-items: center; flex: 0 0 auto; }
.gc-brand-logo img,
.gc-brand .custom-logo {
  display: block !important;
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  object-fit: contain;
  border-radius: 13px;
}
.gc-brand-text { min-width: 0; display: flex; flex-direction: column; line-height: 1.4; }
.gc-brand-name { overflow: hidden; font-size: 1rem; font-weight: 900; white-space: nowrap; text-overflow: ellipsis; }
.gc-brand-tagline { overflow: hidden; max-width: 180px; color: var(--gc-muted); font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }

.gc-search { min-width: 0; }
.gc-product-search {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(28, 34, 48, .06);
  border-radius: 17px;
  background: rgba(239, 242, 245, .88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: .2s border-color, .2s background, .2s box-shadow;
}
.gc-product-search:focus-within {
  border-color: color-mix(in srgb, var(--gc-primary) 35%, transparent);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gc-primary) 9%, transparent);
}
.gc-product-search button {
  width: 54px;
  height: 50px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #555d6d;
  cursor: pointer;
}
.gc-product-search button svg { width: 22px; height: 22px; }
.gc-product-search input[type="search"] {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 9px 2px 9px 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gc-text);
}
.gc-product-search input::placeholder { color: #8a909d; }

.gc-header-actions { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.gc-header-action {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: var(--gc-text);
  cursor: pointer;
  transition: .2s background, .2s border-color, .2s transform;
}
.gc-header-action:hover { border-color: var(--gc-line); background: rgba(255, 255, 255, .7); transform: translateY(-1px); }
.gc-header-action-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 13px;
  background: rgba(245, 247, 249, .95);
  color: #383f4d;
}
.gc-header-action-icon svg { width: 21px; height: 21px; }
.gc-header-action > span:not(.gc-header-action-icon):not(.gc-cart-count) { display: flex; flex-direction: column; line-height: 1.45; text-align: right; }
.gc-header-action strong { font-size: 12px; font-weight: 900; }
.gc-header-action small { color: var(--gc-muted); font-size: 10px; }
.gc-cart-count {
  position: absolute;
  top: 1px;
  right: 34px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--gc-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.gc-icon-btn {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gc-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
}
.gc-icon-btn svg { width: 22px; height: 22px; }

/* Navigation and mega menu */
.gc-nav-row {
  position: relative;
  min-height: 50px;
  margin: 5px -14px 0;
  padding: 0 14px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  border-top: 1px solid var(--gc-line);
}
.gc-category-trigger {
  min-width: 205px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 13px;
  border: 0;
  border-radius: 12px 12px 0 0;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s background, .2s color;
}
.gc-category-trigger > svg:first-child { width: 20px; height: 20px; stroke-width: 1.5; }
.gc-category-trigger .gc-trigger-chevron { width: 16px; height: 16px; margin-right: auto; transition: transform .2s; }
.gc-category-trigger:hover,
.gc-category-trigger.is-open { background: var(--gc-primary-soft); color: var(--gc-primary); }
.gc-category-trigger.is-open .gc-trigger-chevron { transform: rotate(180deg); }
.gc-desktop-nav { min-width: 0; flex: 1; }
.gc-desktop-nav .gc-primary-menu { height: 100%; margin: 0; padding: 0; display: flex; align-items: center; gap: 0; list-style: none; }
.gc-desktop-nav li { position: relative; }
.gc-desktop-nav a { display: block; padding: 12px 10px; border-radius: 10px; font-size: 13px; font-weight: 700; transition: .2s background, .2s color; }
.gc-desktop-nav > ul > li > a:hover,
.gc-desktop-nav > ul > li.current-menu-item > a { background: rgba(28, 34, 48, .05); color: var(--gc-primary); }
.gc-desktop-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 94;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 16px;
  background: rgba(252, 253, 255, .96);
  box-shadow: 0 20px 50px rgba(24, 32, 55, .15);
  backdrop-filter: blur(22px);
  list-style: none;
}
.gc-desktop-nav .sub-menu a { padding: 8px 10px; }
.gc-desktop-nav .sub-menu a:hover { background: var(--gc-primary-soft); }
.gc-desktop-nav li:hover > .sub-menu,
.gc-desktop-nav li:focus-within > .sub-menu { display: flex; }
.gc-nav-highlight {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 900;
}
.gc-nav-highlight span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: rgba(231, 76, 60, .10); }

.gc-mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 14px;
  left: 14px;
  z-index: 92;
  min-height: 455px;
  max-height: min(640px, calc(100vh - 145px));
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 0 0 22px 22px;
  background: rgba(250, 251, 253, .97);
  box-shadow: 0 28px 70px rgba(24, 32, 55, .20);
  backdrop-filter: blur(25px);
  opacity: 0;
  transform: translateY(-8px) scale(.995);
  transform-origin: top center;
  transition: .18s opacity, .18s transform;
}
.gc-mega-menu.is-open { opacity: 1; transform: none; }
.gc-mega-sidebar { overflow: auto; padding: 10px; border-left: 1px solid var(--gc-line); background: rgba(242, 244, 247, .82); }
.gc-mega-tab {
  width: 100%;
  min-height: 50px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 9px;
  padding: 6px 9px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  text-align: right;
  cursor: pointer;
  transition: .15s background, .15s color, .15s transform;
}
.gc-mega-tab > span:nth-child(2) { overflow: hidden; font-size: 12px; font-weight: 800; white-space: nowrap; text-overflow: ellipsis; }
.gc-mega-tab > svg { width: 15px; height: 15px; opacity: .5; }
.gc-mega-tab:hover,
.gc-mega-tab.is-active { background: #fff; color: var(--gc-primary); box-shadow: 0 7px 20px rgba(32, 42, 70, .07); transform: translateX(-2px); }
.gc-mega-all-link { margin-top: 8px; padding: 10px 9px; display: flex; align-items: center; justify-content: space-between; color: var(--gc-primary); font-size: 11px; font-weight: 900; }
.gc-mega-all-link svg { width: 15px; height: 15px; }
.gc-mega-content { overflow: auto; padding: 24px 26px 28px; }
.gc-mega-panel { min-height: 100%; animation: gc-fade-in .18s ease; }
@keyframes gc-fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.gc-mega-heading { margin-bottom: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.gc-mega-kicker,
.gc-section-kicker { display: block; margin-bottom: 2px; color: var(--gc-primary); font-size: 10px; font-weight: 900; letter-spacing: .2px; }
.gc-mega-heading h2 { margin: 0; font-size: 1.3rem; line-height: 1.5; }
.gc-mega-heading > a { display: inline-flex; align-items: center; gap: 5px; color: var(--gc-primary); font-size: 11px; font-weight: 900; }
.gc-mega-heading > a svg { width: 15px; height: 15px; }
.gc-mega-groups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 16px; }
.gc-mega-group { min-width: 0; }
.gc-mega-group-title { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-size: 12px; font-weight: 900; }
.gc-mega-group-title > span:last-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gc-mega-group ul { margin: 0; padding: 0 47px 0 0; list-style: none; }
.gc-mega-group li { margin: 0 0 4px; }
.gc-mega-group li a { display: block; overflow: hidden; padding: 2px 0; color: var(--gc-muted); font-size: 11px; white-space: nowrap; text-overflow: ellipsis; transition: .15s color, .15s transform; }
.gc-mega-group li a:hover { color: var(--gc-primary); transform: translateX(-3px); }
.gc-mega-browse { margin-right: 47px; color: var(--gc-primary); font-size: 10px; font-weight: 800; }
.gc-mega-empty-card { min-height: 270px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1px dashed color-mix(in srgb, var(--gc-primary) 25%, transparent); border-radius: 22px; background: linear-gradient(145deg, #fff, var(--gc-primary-soft)); }
.gc-mega-empty-card strong { font-size: 1.1rem; }
.gc-mega-empty-card span:last-child { color: var(--gc-primary); font-size: 12px; }

.gc-category-thumb {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(28, 34, 48, .05);
  border-radius: 13px;
  background: linear-gradient(145deg, #fff, #edf1f5);
}
.gc-category-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.gc-category-initial { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(145deg, var(--gc-primary-soft), rgba(108, 92, 231, .11)); color: var(--gc-primary); font-weight: 900; }
.gc-category-thumb-xs { width: 29px; height: 29px; border-radius: 9px; }
.gc-category-thumb-sm { width: 38px; height: 38px; }
.gc-category-thumb-md { width: 38px; height: 38px; }
.gc-category-thumb-xl { width: 105px; height: 105px; border-radius: 26px; }

/* Main storefront */
.site-main { min-height: 65vh; padding: 18px 0 72px; }
.gc-market-hero {
  position: relative;
  min-height: 370px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  padding: 42px 50px;
  border-radius: 30px;
}
.gc-market-hero::before { content: ""; position: absolute; width: 360px; height: 360px; top: -190px; right: -120px; border-radius: 50%; background: color-mix(in srgb, var(--gc-primary) 15%, transparent); filter: blur(2px); }
.gc-market-hero::after { content: ""; position: absolute; width: 300px; height: 300px; bottom: -170px; left: -100px; border-radius: 50%; background: rgba(108, 92, 231, .12); }
.gc-market-hero-content { position: relative; z-index: 2; }
.gc-eyebrow { display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 999px; background: var(--gc-primary-soft); color: var(--gc-primary); font-size: 11px; font-weight: 900; }
.gc-market-hero h1 { max-width: 650px; margin: 12px 0 10px; font-size: clamp(2rem, 4.8vw, 4.15rem); line-height: 1.22; letter-spacing: -.8px; }
.gc-market-hero p { max-width: 620px; margin: 0 0 20px; color: var(--gc-muted); font-size: 1rem; }
.gc-hero-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.gc-btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, var(--gc-primary), color-mix(in srgb, var(--gc-primary) 72%, var(--gc-primary-2))) !important;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--gc-primary) 22%, transparent);
  color: #fff !important;
  font-weight: 900 !important;
  cursor: pointer;
  transition: .2s transform, .2s box-shadow;
}
.gc-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { transform: translateY(-2px); box-shadow: 0 13px 28px color-mix(in srgb, var(--gc-primary) 27%, transparent); }
.gc-btn-secondary { border: 1px solid var(--gc-line) !important; background: rgba(255, 255, 255, .72) !important; box-shadow: none !important; color: var(--gc-text) !important; }
.gc-hero-points { margin-top: 19px; display: flex; flex-wrap: wrap; gap: 15px; color: var(--gc-muted); font-size: 11px; font-weight: 700; }
.gc-hero-points span { display: inline-flex; align-items: center; gap: 5px; }
.gc-hero-points svg { width: 15px; height: 15px; color: var(--gc-primary); stroke-width: 2.6; }
.gc-market-hero-art { position: relative; z-index: 1; min-height: 285px; display: grid; place-items: center; }
.gc-hero-icon-card { width: 210px; height: 210px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .95); border-radius: 50px; background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .48)); box-shadow: 0 28px 55px rgba(28, 34, 48, .14); font-size: 7rem; transform: rotate(-3deg); }
.gc-hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.gc-hero-orb-one { width: 170px; height: 170px; top: 1px; left: 24px; background: color-mix(in srgb, var(--gc-primary) 17%, transparent); }
.gc-hero-orb-two { width: 115px; height: 115px; right: 32px; bottom: 0; background: rgba(108, 92, 231, .16); }
.gc-floating-card { position: absolute; min-width: 132px; padding: 10px 13px; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .92); border-radius: 16px; background: rgba(255, 255, 255, .80); box-shadow: var(--gc-shadow-soft); backdrop-filter: blur(14px); }
.gc-floating-card strong { font-size: 12px; }
.gc-floating-card small { color: var(--gc-muted); font-size: 9px; }
.gc-floating-card-one { top: 35px; right: 3px; }
.gc-floating-card-two { left: 0; bottom: 35px; }

.gc-section { padding: 34px 0; }
.gc-section-head { margin-bottom: 16px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.gc-section-head h2 { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.85rem); line-height: 1.5; }
.gc-section-head > a { display: inline-flex; align-items: center; gap: 6px; color: var(--gc-primary); font-size: 12px; font-weight: 900; }
.gc-category-showcase { padding: 20px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 11px; border-radius: 25px; }
.gc-category-card { min-width: 0; padding: 13px 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; border: 1px solid transparent; border-radius: 18px; text-align: center; transition: .2s background, .2s border-color, .2s transform; }
.gc-category-card:hover { border-color: var(--gc-line); background: rgba(255, 255, 255, .82); transform: translateY(-4px); }
.gc-category-thumb-home { width: 92px; height: 92px; margin-bottom: 3px; border-radius: 25px; }
.gc-category-card strong { width: 100%; overflow: hidden; font-size: 12px; white-space: nowrap; text-overflow: ellipsis; }
.gc-category-card > span:last-child { color: var(--gc-muted); font-size: 9px; }

.gc-feature-strip { padding: 20px 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; border-radius: 24px; }
.gc-feature-strip > div { min-width: 0; display: flex; align-items: center; gap: 11px; }
.gc-feature-icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 46px; border-radius: 15px; background: var(--gc-primary-soft); color: var(--gc-primary); }
.gc-feature-icon svg { width: 24px; height: 24px; }
.gc-feature-strip > div > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.gc-feature-strip strong { font-size: 12px; }
.gc-feature-strip small { color: var(--gc-muted); font-size: 9px; }

/* WooCommerce */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  position: relative;
  width: auto !important;
  margin: 0 !important;
  padding: 11px 11px 13px;
  overflow: hidden;
  border: 1px solid rgba(28, 34, 48, .07);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 26px rgba(32, 42, 70, .07);
  backdrop-filter: blur(15px);
  transition: .22s transform, .22s box-shadow, .22s border-color;
}
.woocommerce ul.products li.product:hover { border-color: color-mix(in srgb, var(--gc-primary) 18%, transparent); box-shadow: 0 16px 38px rgba(32, 42, 70, .12); transform: translateY(-5px); }
.woocommerce ul.products li.product a img { margin-bottom: 10px !important; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 15px; background: #fff; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 3.5em; margin: 0 !important; padding: 4px 1px 0 !important; color: #353a45; font-size: .88rem !important; font-weight: 700; line-height: 1.75; }
.woocommerce ul.products li.product .price { min-height: 2em; display: block; margin: 7px 0 10px; color: var(--gc-primary) !important; font-size: .92rem !important; font-weight: 900; }
.woocommerce ul.products li.product .price del { color: #9ca1aa; font-size: .78rem; }
.woocommerce ul.products li.product .button { width: 100%; min-height: 39px; padding: 8px 10px !important; font-size: 11px; }
.woocommerce span.onsale { min-height: auto !important; top: 18px !important; right: 18px !important; left: auto !important; padding: 6px 8px !important; border-radius: 9px !important; background: #ef4d5a !important; font-size: 10px !important; line-height: 1 !important; }
.woocommerce div.product { padding: 24px; border: 1px solid var(--gc-border); border-radius: 28px; background: var(--gc-surface); box-shadow: var(--gc-shadow); }
.woocommerce div.product div.images img { border-radius: 20px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--gc-primary) !important; font-weight: 900; }
.woocommerce .quantity .qty { padding: 9px; border: 1px solid var(--gc-line); border-radius: 11px; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { border: 0 !important; border-radius: 15px; background: var(--gc-surface-strong); box-shadow: var(--gc-shadow-soft); }
.woocommerce .woocommerce-breadcrumb { color: var(--gc-muted); font-size: 11px; }
.woocommerce .woocommerce-ordering select { padding: 8px 12px; border: 1px solid var(--gc-line); border-radius: 12px; background: rgba(255, 255, 255, .85); }

/* Content */
.gc-content-card { padding: 28px; border-radius: 25px; }
.gc-content-card > h1:first-child,
.gc-content-card article > h1:first-child,
.woocommerce-products-header__title.page-title,
.woocommerce .product .product_title {
  position: relative;
  margin: 0 0 24px;
  padding: 13px 17px 13px 54px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .42));
  box-shadow: var(--gc-shadow-soft);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem) !important;
  line-height: 1.5;
}
.gc-content-card > h1:first-child::before,
.gc-content-card article > h1:first-child::before,
.woocommerce-products-header__title.page-title::before,
.woocommerce .product .product_title::before { content: ""; position: absolute; top: 50%; right: 17px; width: 22px; height: 22px; border-radius: 8px; background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-2)); box-shadow: 0 6px 14px color-mix(in srgb, var(--gc-primary) 25%, transparent); transform: translateY(-50%); }
.gc-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gc-post-card { padding: 18px; border-radius: 21px; }
.gc-post-card img { aspect-ratio: 16 / 10; object-fit: cover; border-radius: 15px; }

/* Drawers */
.gc-overlay { position: fixed; inset: 0; z-index: 98; visibility: hidden; background: rgba(20, 25, 38, .38); backdrop-filter: blur(5px); opacity: 0; transition: .25s opacity, .25s visibility; }
.gc-drawer { position: fixed; top: 0; bottom: 0; z-index: 99; width: min(92vw, 410px); overflow: auto; padding: 18px; background: rgba(247, 249, 252, .96); box-shadow: 0 0 65px rgba(20, 30, 55, .24); backdrop-filter: blur(24px); transition: .3s transform; }
.gc-drawer-right { right: 0; transform: translateX(105%); }
.gc-drawer-left { left: 0; transform: translateX(-105%); }
body.gc-menu-open .gc-drawer-right,
body.gc-cart-open .gc-drawer-left { transform: none; }
body.gc-menu-open .gc-overlay,
body.gc-cart-open .gc-overlay { visibility: visible; opacity: 1; }
.gc-drawer-head { position: sticky; top: -18px; z-index: 2; margin: -18px -18px 14px; padding: 17px 18px 13px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--gc-line); background: rgba(247, 249, 252, .92); backdrop-filter: blur(20px); }
.gc-drawer-head > div { display: flex; flex-direction: column; }
.gc-drawer-head strong { font-size: 15px; }
.gc-drawer-head small { color: var(--gc-muted); font-size: 9px; }
.gc-drawer-close { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 12px; background: rgba(28, 34, 48, .06); cursor: pointer; }
.gc-drawer-close svg { width: 20px; height: 20px; }
.gc-mobile-section-title { margin: 15px 0 7px; color: var(--gc-muted); font-size: 10px; font-weight: 900; }
.gc-mobile-category-item { border-bottom: 1px solid var(--gc-line); }
.gc-mobile-category-row { display: flex; align-items: center; gap: 8px; }
.gc-mobile-category-row > a { min-width: 0; flex: 1; padding: 8px 2px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; }
.gc-mobile-category-row > a span:last-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gc-mobile-category-toggle { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 36px; border: 0; border-radius: 10px; background: rgba(28, 34, 48, .04); cursor: pointer; }
.gc-mobile-category-toggle svg { width: 16px; height: 16px; transition: transform .2s; }
.gc-mobile-category-toggle.is-open svg { transform: rotate(180deg); }
.gc-mobile-subcategories { padding: 3px 47px 10px 0; }
.gc-mobile-subcategories a { padding: 5px 0; display: flex; align-items: center; gap: 8px; color: var(--gc-muted); font-size: 11px; }
.gc-mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.gc-mobile-menu a { padding: 9px 3px; display: flex; border-bottom: 1px solid var(--gc-line); font-size: 12px; font-weight: 700; }
.gc-mobile-menu .sub-menu { padding-right: 15px; }
.widget_shopping_cart_content .mini_cart_item { min-height: 76px; padding: 12px 76px 12px 24px !important; border-bottom: 1px solid var(--gc-line); }
.woocommerce-mini-cart__total { padding-top: 15px; }
.woocommerce-mini-cart__buttons { display: grid; gap: 8px; }
.gc-empty-cart { padding: 30px 0; color: var(--gc-muted); text-align: center; }


/* Windows 11-style tabbed drawers */
.gc-drawer {
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--gc-primary) 13%, transparent), transparent 34%),
    radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--gc-primary-2) 12%, transparent), transparent 35%),
    rgba(247, 249, 252, .91);
  border: 1px solid rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(28px) saturate(135%);
  backdrop-filter: blur(28px) saturate(135%);
}
.gc-drawer-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 2px 0 15px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 18px;
  background: rgba(255, 255, 255, .52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 10px 28px rgba(32, 42, 70, .08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.gc-drawer-tab {
  position: relative;
  min-width: 0;
  min-height: 46px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--gc-muted);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  transition: .2s background, .2s color, .2s box-shadow, .2s transform;
}
.gc-drawer-tab svg { width: 18px; height: 18px; flex: 0 0 18px; }
.gc-drawer-tab:hover { color: var(--gc-text); background: rgba(255, 255, 255, .5); }
.gc-drawer-tab.is-active {
  color: var(--gc-text);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 20px rgba(31, 42, 68, .12), inset 0 1px 0 #fff;
  transform: translateY(-1px);
}
.gc-drawer-tab.is-active::after {
  content: "";
  position: absolute;
  right: 25%;
  bottom: 3px;
  left: 25%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gc-primary), var(--gc-primary-2));
}
.gc-drawer-tab-panel { animation: gcPanelIn .22s ease both; }
@keyframes gcPanelIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.gc-drawer-tab .gc-cart-count,
.gc-drawer-tab .gc-shopping-list-count {
  position: static;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(28, 34, 48, .08);
  color: var(--gc-text);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}
.gc-drawer-tab.is-active .gc-cart-count,
.gc-drawer-tab.is-active .gc-shopping-list-count { background: var(--gc-primary); color: #fff; }

/* Primary-menu pages in mobile drawer */
.gc-mobile-menu,
.gc-mobile-menu .menu,
.gc-mobile-menu .menu > ul { margin: 0; padding: 0; }
.gc-mobile-menu ul { list-style: none; }
.gc-mobile-menu li { position: relative; }
.gc-mobile-menu a {
  min-height: 47px;
  margin-bottom: 5px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  background: rgba(255, 255, 255, .50);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 750;
  transition: .2s transform, .2s background, .2s border-color;
}
.gc-mobile-menu a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-2));
  box-shadow: 0 3px 8px color-mix(in srgb, var(--gc-primary) 22%, transparent);
}
.gc-mobile-menu a:hover { transform: translateX(-2px); background: rgba(255, 255, 255, .82); border-color: rgba(255, 255, 255, .95); }
.gc-mobile-menu .sub-menu { margin: 1px 13px 7px 0; padding: 0 10px 0 0; border-right: 1px dashed color-mix(in srgb, var(--gc-primary) 26%, transparent); }
.gc-mobile-menu .sub-menu a { min-height: 40px; margin-bottom: 3px; padding: 7px 10px; background: rgba(255, 255, 255, .34); color: var(--gc-muted); font-size: 10px; }
.gc-mobile-menu .sub-menu a::before { width: 6px; height: 6px; flex-basis: 6px; border-radius: 50%; }

/* Shopping list / Save for later */
.gc-save-for-later {
  width: max-content;
  max-width: 100%;
  margin-top: 7px;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--gc-primary-2) 20%, transparent);
  border-radius: 9px;
  background: color-mix(in srgb, var(--gc-primary-2) 7%, #fff);
  color: var(--gc-primary-2);
  font-size: 9px;
  font-weight: 850;
  cursor: pointer;
}
.gc-save-for-later svg { width: 14px; height: 14px; }
.gc-save-for-later:hover { background: color-mix(in srgb, var(--gc-primary-2) 12%, #fff); }
.gc-cart-save-action { margin-top: 8px; }
.gc-save-for-later--cart-page,
.gc-save-for-later--block-cart { min-height: 34px; padding: 7px 11px; font-size: 10px; }
.gc-cart-save-action--block { margin-top: 10px; }
.woocommerce-cart-form .gc-save-for-later { text-decoration: none; }
.gc-shopping-list-content { min-height: 170px; }
.gc-list-empty {
  min-height: 250px;
  padding: 34px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px dashed rgba(28, 34, 48, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .38);
  color: var(--gc-muted);
  text-align: center;
}
.gc-list-empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 5px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,246,250,.72));
  box-shadow: var(--gc-shadow-soft);
  color: var(--gc-primary-2);
  font-size: 34px;
  line-height: 1;
}
.gc-list-empty strong { color: var(--gc-text); font-size: 13px; }
.gc-list-empty small { max-width: 260px; font-size: 10px; }
.gc-shopping-list-toolbar {
  margin-bottom: 9px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 14px;
  background: rgba(255, 255, 255, .48);
  color: var(--gc-muted);
  font-size: 9px;
}
.gc-shopping-list-toolbar > div { display: flex; gap: 4px; }
.gc-list-toolbar-btn {
  padding: 5px 7px;
  border: 0;
  border-radius: 8px;
  background: var(--gc-primary-soft);
  color: var(--gc-primary);
  font-size: 8px;
  font-weight: 850;
  cursor: pointer;
}
.gc-list-toolbar-btn-danger { background: rgba(220, 53, 69, .08); color: #cf3f4f; }
.gc-shopping-list-items { display: grid; gap: 8px; }
.gc-shopping-list-item {
  padding: 9px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 17px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 7px 20px rgba(31, 42, 68, .06), inset 0 1px 0 rgba(255,255,255,.9);
}
.gc-shopping-list-thumb { width: 76px; height: 76px; overflow: hidden; display: block; border-radius: 13px; background: #fff; }
.gc-shopping-list-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.gc-shopping-list-info { min-width: 0; display: flex; flex-direction: column; }
.gc-shopping-list-title { overflow: hidden; color: var(--gc-text); font-size: 11px; font-weight: 850; white-space: nowrap; text-overflow: ellipsis; }
.gc-shopping-list-variation { margin-top: 1px; color: var(--gc-muted); font-size: 8px; }
.gc-shopping-list-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.gc-shopping-list-meta > span { color: var(--gc-primary); font-size: 10px; font-weight: 900; }
.gc-shopping-list-meta > small { color: var(--gc-muted); font-size: 8px; }
.gc-shopping-list-actions { margin-top: 6px; display: flex; gap: 5px; }
.gc-list-primary {
  min-height: 31px;
  flex: 1;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gc-primary), color-mix(in srgb, var(--gc-primary) 72%, #19d794));
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 7px 15px color-mix(in srgb, var(--gc-primary) 18%, transparent);
}
.gc-list-remove { width: 31px; height: 31px; display: grid; place-items: center; border: 0; border-radius: 10px; background: rgba(220, 53, 69, .08); color: #cf3f4f; cursor: pointer; }
.gc-list-remove svg { width: 15px; height: 15px; }
[data-gc-list-action].is-loading { position: relative; pointer-events: none; color: transparent !important; opacity: .7; }
[data-gc-list-action].is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: var(--gc-primary);
  animation: gcSpin .7s linear infinite;
}
@keyframes gcSpin { to { transform: rotate(360deg); } }
.gc-ajax-notice {
  position: fixed;
  right: 50%;
  bottom: 88px;
  z-index: 150;
  max-width: min(90vw, 360px);
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px;
  background: rgba(31, 38, 52, .9);
  box-shadow: 0 16px 45px rgba(0,0,0,.2);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 12px);
  transition: .22s opacity, .22s transform;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.gc-ajax-notice.is-visible { opacity: 1; transform: translate(50%, 0); }
.gc-ajax-notice.is-error { background: rgba(156, 34, 49, .93); }

/* Footer and mobile bar */
.site-footer { padding: 0 0 95px; }
.gc-footer-shell { padding: 27px; border-radius: 27px; }
.gc-footer-widgets { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 23px; }
.gc-footer-column { min-width: 0; }
.gc-footer-widget { margin: 0 0 18px; }
.gc-footer-widget:last-child { margin-bottom: 0; }
.gc-footer-title { margin: 0 0 11px; font-size: 1rem; font-weight: 900; }
.gc-footer-widget p,
.gc-footer-widget li,
.gc-footer-widget a { color: var(--gc-muted); font-size: 12px; }
.gc-footer-widget ul,
.gc-footer-menu { margin: 0; padding: 0; list-style: none; }
.gc-footer-widget li { margin: 0 0 6px; }
.gc-footer-widget a:hover { color: var(--gc-primary); }
.gc-footer-bottom { margin-top: 21px; padding-top: 17px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--gc-line); color: var(--gc-muted); font-size: 11px; }
.gc-footer-bottom p { margin: 0; }
.gc-mobile-bar { display: none; position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 90; grid-template-columns: repeat(var(--gc-mobile-items, 5), minmax(0, 1fr)); padding: 7px; border-radius: 21px; }
.gc-mobile-bar a,
.gc-mobile-bar button { position: relative; min-width: 0; padding: 5px 2px; display: grid; place-items: center; gap: 2px; border: 0; border-radius: 14px; background: transparent; color: var(--gc-text); font: inherit; font-size: 10px; cursor: pointer; }
.gc-mobile-bar a:hover,
.gc-mobile-bar button:hover { background: rgba(255,255,255,.58); }
.gc-mobile-bar-icon { font-size: 20px; line-height: 1; }
.gc-mobile-bar-label { max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gc-mobile-bar-badge { position: absolute !important; top: 0 !important; right: calc(50% + 4px) !important; left: auto !important; min-width: 17px; height: 17px; padding: 0 4px; display: grid !important; place-items: center; border-radius: 999px; background: var(--gc-primary) !important; color: #fff !important; font-size: 8px !important; font-weight: 900; box-shadow: 0 4px 10px color-mix(in srgb, var(--gc-primary) 28%, transparent); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; margin: -1px; }

@media (max-width: 1160px) {
  .gc-header-main { grid-template-columns: minmax(160px, 210px) minmax(240px, 1fr) auto; gap: 10px; }
  .gc-header-action > span:not(.gc-header-action-icon):not(.gc-cart-count) { display: none; }
  .gc-header-action { padding: 6px; }
  .gc-cart-count { right: 29px; }
  .gc-brand-tagline { display: none; }
  .gc-category-trigger { min-width: 190px; }
  .gc-nav-highlight { display: none; }
  .gc-mega-groups { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gc-category-showcase { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gc-footer-widgets { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.gc-mega-open { overflow: auto; }
  .gc-mobile-only { display: inline-grid !important; }
  .site-header { padding: 7px 0; }
  .gc-header-shell { padding: 7px; border-radius: 21px; }
  .gc-header-main { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 7px; }
  .gc-brand { justify-content: center; }
  .gc-brand-logo img,
  .gc-brand .custom-logo { width: 39px !important; height: 39px !important; max-width: 39px !important; max-height: 39px !important; }
  .gc-brand-tagline { display: none; }
  .gc-search { grid-column: 1 / -1; grid-row: 2; }
  .gc-product-search input[type="search"] { height: 45px; }
  .gc-product-search button { height: 45px; }
  .gc-header-actions .gc-account { display: none; }
  .gc-header-action.gc-cart-toggle { width: 44px; min-height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--gc-line); background: rgba(255, 255, 255, .70); }
  .gc-header-action-icon { width: auto; height: auto; background: transparent; }
  .gc-cart-count { top: -5px; right: auto; left: -5px; }
  .gc-nav-row { display: none; }
  .gc-market-hero { min-height: 0; padding: 32px; grid-template-columns: 1fr; }
  .gc-market-hero-art { min-height: 240px; }
  .gc-feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gc-footer-widgets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { padding-bottom: 70px; }
  .gc-container { width: min(calc(100% - 20px), var(--gc-container)); }
  .site-main { padding-top: 8px; }
  .gc-brand-name { display: none; }
  .gc-market-hero { padding: 25px 20px; border-radius: 24px; }
  .gc-market-hero h1 { font-size: clamp(1.85rem, 10vw, 3rem); }
  .gc-market-hero p { font-size: .88rem; }
  .gc-market-hero-art { min-height: 205px; }
  .gc-hero-icon-card { width: 150px; height: 150px; border-radius: 38px; font-size: 5rem; }
  .gc-floating-card { min-width: 112px; padding: 8px 10px; }
  .gc-floating-card-one { top: 18px; right: 4px; }
  .gc-floating-card-two { left: 0; bottom: 20px; }
  .gc-hero-points { gap: 9px; }
  .gc-section { padding: 25px 0; }
  .gc-section-head { align-items: flex-end; }
  .gc-section-head > a { font-size: 10px; }
  .gc-category-showcase { padding: 13px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; border-radius: 21px; }
  .gc-category-thumb-home { width: 74px; height: 74px; border-radius: 21px; }
  .gc-category-card { padding: 10px 4px; }
  .gc-category-card strong { font-size: 10px; }
  .gc-feature-strip { padding: 15px; gap: 14px 8px; }
  .gc-feature-icon { width: 39px; height: 39px; flex-basis: 39px; border-radius: 12px; }
  .gc-feature-icon svg { width: 20px; height: 20px; }
  .gc-feature-strip strong { font-size: 10px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .woocommerce ul.products li.product { padding: 8px; border-radius: 16px; }
  .woocommerce ul.products li.product a img { border-radius: 13px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: .73rem !important; }
  .woocommerce ul.products li.product .button { min-height: 35px; padding: 7px !important; font-size: 9px; }
  .woocommerce div.product { padding: 13px; border-radius: 21px; }
  .gc-content-card { padding: 18px; }
  .gc-post-grid { grid-template-columns: 1fr; }
  .gc-footer-widgets { grid-template-columns: 1fr; }
  .gc-footer-bottom { align-items: flex-start; flex-direction: column; gap: 4px; }
  .gc-mobile-bar { display: grid; }
  .site-footer { padding-bottom: 25px; }
}

@media (max-width: 430px) {
  .gc-category-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gc-feature-strip { grid-template-columns: 1fr 1fr; }
  .gc-feature-strip small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* =========================================================
   GlassCommerce customer account panel
   ========================================================= */
body.gc-account-screen .gc-content-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.gc-account-screen .gc-content-card > h1:first-child { display: none; }
body.gc-account-screen .gc-content-card > .woocommerce { width: 100%; }

.gc-account-page { width: 100%; }
.gc-account-hero {
  position: relative;
  min-height: 178px;
  margin-bottom: 18px;
  padding: 28px 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 29px;
  background:
    radial-gradient(circle at 8% 10%, color-mix(in srgb, var(--gc-primary-2) 20%, transparent), transparent 30%),
    radial-gradient(circle at 94% 90%, color-mix(in srgb, var(--gc-primary) 23%, transparent), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.68));
  box-shadow: var(--gc-shadow);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.gc-account-hero::before,
.gc-account-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.22);
  transform: rotate(16deg);
  pointer-events: none;
}
.gc-account-hero::before { width: 150px; height: 150px; top: -92px; left: 17%; border-radius: 44px; }
.gc-account-hero::after { width: 110px; height: 110px; right: 39%; bottom: -78px; border-radius: 34px; }
.gc-account-hero-user,
.gc-account-hero-actions { position: relative; z-index: 1; }
.gc-account-hero-user { min-width: 0; display: flex; align-items: center; gap: 18px; }
.gc-account-avatar { position: relative; width: 90px; height: 90px; flex: 0 0 90px; padding: 5px; border: 1px solid rgba(255,255,255,.95); border-radius: 27px; background: rgba(255,255,255,.62); box-shadow: 0 15px 34px rgba(30,40,65,.14); }
.gc-account-avatar img { width: 100%; height: 100%; display: block; border-radius: 22px; object-fit: cover; }
.gc-account-online { position: absolute; right: -2px; bottom: 7px; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; background: var(--gc-primary); box-shadow: 0 3px 10px color-mix(in srgb, var(--gc-primary) 30%, transparent); }
.gc-account-hero-copy { min-width: 0; }
.gc-account-kicker { display: block; margin-bottom: 4px; color: var(--gc-primary); font-size: 10px; font-weight: 950; letter-spacing: .02em; }
.gc-account-hero h1 { margin: 0; padding: 0; border: 0; background: transparent; box-shadow: none; color: var(--gc-text); font-size: clamp(1.35rem, 2.3vw, 2rem) !important; line-height: 1.55; }
.gc-account-hero h1::before { display: none; }
.gc-account-hero p { margin: 3px 0 0; color: var(--gc-muted); font-size: 12px; }
.gc-account-hero-actions { display: flex; align-items: center; gap: 9px; }
.gc-account-hero-btn {
  min-height: 47px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--gc-primary) 22%, transparent);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gc-primary), color-mix(in srgb, var(--gc-primary) 76%, #28d69a));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--gc-primary) 20%, transparent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  transition: .2s transform, .2s box-shadow;
}
.gc-account-hero-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 28px color-mix(in srgb, var(--gc-primary) 25%, transparent); }
.gc-account-hero-btn svg { width: 19px; height: 19px; }
.gc-account-hero-btn--light { border-color: rgba(28,34,48,.07); background: rgba(255,255,255,.76); box-shadow: 0 9px 24px rgba(30,40,65,.08); color: var(--gc-text); }
.gc-account-hero-btn--light:hover { color: var(--gc-primary); }

.gc-account-layout { display: grid; grid-template-columns: 255px minmax(0, 1fr); align-items: start; gap: 18px; }
.woocommerce-MyAccount-navigation.gc-account-nav {
  position: sticky;
  top: 117px;
  width: auto;
  float: none;
  padding: 13px;
  border: 1px solid var(--gc-border);
  border-radius: 24px;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-soft);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.gc-account-nav-user { min-width: 0; margin-bottom: 10px; padding: 8px 7px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gc-line); }
.gc-account-nav-user img { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 15px; object-fit: cover; box-shadow: 0 8px 18px rgba(31,42,68,.12); }
.gc-account-nav-user > span { min-width: 0; display: flex; flex-direction: column; line-height: 1.55; }
.gc-account-nav-user strong { overflow: hidden; font-size: 11px; font-weight: 950; white-space: nowrap; text-overflow: ellipsis; }
.gc-account-nav-user small { overflow: hidden; max-width: 150px; color: var(--gc-muted); font-size: 8px; white-space: nowrap; text-overflow: ellipsis; direction: ltr; text-align: right; }
.woocommerce-MyAccount-navigation.gc-account-nav ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-MyAccount-navigation.gc-account-nav li { margin: 3px 0; padding: 0; border: 0; }
.woocommerce-MyAccount-navigation.gc-account-nav li a {
  position: relative;
  min-height: 45px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #4d5360;
  font-size: 10px;
  font-weight: 850;
  transition: .2s background, .2s color, .2s border-color, .2s transform;
}
.woocommerce-MyAccount-navigation.gc-account-nav li a:hover { border-color: rgba(28,34,48,.05); background: rgba(255,255,255,.64); color: var(--gc-primary); transform: translateX(-2px); }
.woocommerce-MyAccount-navigation.gc-account-nav li.is-active a { border-color: color-mix(in srgb, var(--gc-primary) 13%, transparent); background: var(--gc-primary-soft); color: var(--gc-primary); }
.gc-account-nav-icon { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 31px; border-radius: 10px; background: rgba(255,255,255,.72); color: #626977; box-shadow: inset 0 0 0 1px rgba(28,34,48,.04); }
.gc-account-nav-icon svg { width: 17px; height: 17px; }
.is-active .gc-account-nav-icon { background: color-mix(in srgb, var(--gc-primary) 14%, #fff); color: var(--gc-primary); }
.gc-account-nav-arrow { width: 14px; height: 14px; margin-right: auto; color: #a3a8b1; transform: rotate(180deg); }
.woocommerce-MyAccount-navigation-link--customer-logout { margin-top: 9px !important; padding-top: 8px !important; border-top: 1px solid var(--gc-line) !important; }
.woocommerce-MyAccount-navigation-link--customer-logout a { color: #cf4654 !important; }
.woocommerce-MyAccount-navigation-link--customer-logout .gc-account-nav-icon { background: rgba(220,53,69,.07); color: #cf4654; }
.gc-account-support-card { margin-top: 12px; padding: 12px; display: flex; align-items: center; gap: 9px; border: 1px solid color-mix(in srgb, var(--gc-primary-2) 14%, transparent); border-radius: 16px; background: linear-gradient(135deg, color-mix(in srgb, var(--gc-primary-2) 9%, #fff), rgba(255,255,255,.72)); }
.gc-account-support-icon { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 35px; border-radius: 12px; background: color-mix(in srgb, var(--gc-primary-2) 13%, #fff); color: var(--gc-primary-2); }
.gc-account-support-icon svg { width: 19px; height: 19px; }
.gc-account-support-card > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.gc-account-support-card strong { font-size: 9px; }
.gc-account-support-card small { color: var(--gc-muted); font-size: 7px; }

.woocommerce-MyAccount-content.gc-account-content {
  width: auto;
  min-width: 0;
  min-height: 520px;
  float: none;
  padding: 24px;
  border: 1px solid var(--gc-border);
  border-radius: 25px;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-soft);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.gc-account-content::after { content: ""; display: table; clear: both; }
.gc-account-section-head { margin-bottom: 19px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.gc-account-section-head h2 { margin: 0; color: var(--gc-text); font-size: 1.25rem; font-weight: 950; line-height: 1.6; }
.gc-account-section-head p { margin: 2px 0 0; color: var(--gc-muted); font-size: 10px; }
.gc-account-date { padding: 7px 10px; border: 1px solid var(--gc-line); border-radius: 11px; background: rgba(255,255,255,.58); color: var(--gc-muted); font-size: 9px; white-space: nowrap; }
.gc-account-secondary-btn { min-height: 39px; padding: 7px 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gc-line); border-radius: 12px; background: rgba(255,255,255,.72); color: var(--gc-primary); font-size: 10px; font-weight: 900; }

.gc-account-stats { margin-bottom: 17px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.gc-account-stat {
  min-width: 0;
  min-height: 126px;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 19px;
  background: rgba(255,255,255,.57);
  box-shadow: 0 8px 23px rgba(31,42,68,.055), inset 0 1px 0 rgba(255,255,255,.88);
  transition: .2s transform, .2s box-shadow, .2s border-color;
}
a.gc-account-stat:hover { border-color: color-mix(in srgb, var(--gc-primary) 16%, transparent); box-shadow: 0 13px 27px rgba(31,42,68,.09); transform: translateY(-3px); }
.gc-account-stat-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; }
.gc-account-stat-icon svg { width: 21px; height: 21px; }
.gc-account-stat-icon--primary { background: color-mix(in srgb, var(--gc-primary) 12%, #fff); color: var(--gc-primary); }
.gc-account-stat-icon--success { background: rgba(27,173,111,.10); color: #17965f; }
.gc-account-stat-icon--violet { background: color-mix(in srgb, var(--gc-primary-2) 11%, #fff); color: var(--gc-primary-2); }
.gc-account-stat-icon--rose { background: rgba(228,80,112,.09); color: #d84c6b; }
.gc-account-stat > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; line-height: 1.35; }
.gc-account-stat small { color: var(--gc-muted); font-size: 8px; }
.gc-account-stat strong { margin-top: 3px; color: var(--gc-text); font-size: 1.25rem; font-weight: 950; line-height: 1.2; }
.gc-account-stat strong.gc-account-money { overflow: hidden; font-size: .84rem; white-space: nowrap; text-overflow: ellipsis; }
.gc-account-stat em { grid-column: 1 / -1; color: var(--gc-muted); font-size: 8px; font-style: normal; }

.gc-account-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(250px, .8fr); align-items: start; gap: 12px; }
.gc-account-panel { padding: 17px; border: 1px solid rgba(255,255,255,.88); border-radius: 20px; background: rgba(255,255,255,.47); box-shadow: inset 0 1px 0 rgba(255,255,255,.82); }
.gc-account-panel-head { margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gc-account-panel-head h3 { margin: 0; font-size: 12px; font-weight: 950; }
.gc-account-panel-head p { margin: 1px 0 0; color: var(--gc-muted); font-size: 8px; }
.gc-account-panel-head > a { color: var(--gc-primary); font-size: 9px; font-weight: 900; }
.gc-account-order-list { display: grid; gap: 7px; }
.gc-account-order-row { min-width: 0; min-height: 61px; padding: 8px 9px; display: grid; grid-template-columns: 38px minmax(90px,1fr) auto auto 15px; align-items: center; gap: 9px; border: 1px solid transparent; border-radius: 14px; background: rgba(255,255,255,.6); transition: .2s border-color, .2s transform, .2s background; }
.gc-account-order-row:hover { border-color: color-mix(in srgb, var(--gc-primary) 12%, transparent); background: rgba(255,255,255,.83); transform: translateX(-2px); }
.gc-account-order-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--gc-primary-soft); color: var(--gc-primary); }
.gc-account-order-icon svg { width: 18px; height: 18px; }
.gc-account-order-main { min-width: 0; display: flex; flex-direction: column; line-height: 1.5; }
.gc-account-order-main strong { overflow: hidden; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.gc-account-order-main small { color: var(--gc-muted); font-size: 7px; }
.gc-account-order-status { padding: 5px 8px; border-radius: 999px; background: rgba(112,119,132,.09); color: #616876; font-size: 7px; font-weight: 900; white-space: nowrap; }
.gc-status-processing { background: rgba(247,174,46,.12); color: #b77709; }
.gc-status-completed { background: rgba(24,166,103,.11); color: #128257; }
.gc-status-cancelled,
.gc-status-failed,
.gc-status-refunded { background: rgba(220,53,69,.09); color: #c63e4d; }
.gc-status-on-hold { background: color-mix(in srgb, var(--gc-primary-2) 10%, transparent); color: var(--gc-primary-2); }
.gc-account-order-total { color: var(--gc-text); font-size: 8px; font-weight: 900; white-space: nowrap; }
.gc-account-order-arrow { width: 14px; height: 14px; color: #a4a9b2; transform: rotate(180deg); }
.gc-account-empty-state { min-height: 245px; padding: 26px; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.gc-account-empty-state > span { width: 58px; height: 58px; margin-bottom: 8px; display: grid; place-items: center; border-radius: 19px; background: var(--gc-primary-soft); color: var(--gc-primary); }
.gc-account-empty-state > span svg { width: 27px; height: 27px; }
.gc-account-empty-state strong { font-size: 11px; }
.gc-account-empty-state p { max-width: 280px; margin: 3px 0 11px; color: var(--gc-muted); font-size: 9px; }
.gc-account-empty-state a { padding: 7px 13px; border-radius: 11px; background: var(--gc-primary); color: #fff; font-size: 9px; font-weight: 900; }
.gc-account-quick-list { display: grid; gap: 7px; }
.gc-account-quick-list a { min-width: 0; min-height: 59px; padding: 8px; display: grid; grid-template-columns: 38px minmax(0,1fr); align-items: center; column-gap: 9px; border: 1px solid transparent; border-radius: 14px; background: rgba(255,255,255,.59); transition: .2s background, .2s border-color, .2s transform; }
.gc-account-quick-list a:hover { border-color: color-mix(in srgb, var(--gc-primary) 12%, transparent); background: rgba(255,255,255,.84); transform: translateX(-2px); }
.gc-account-quick-list a > span { grid-row: 1 / 3; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: color-mix(in srgb, var(--gc-primary-2) 8%, #fff); color: var(--gc-primary-2); }
.gc-account-quick-list a > span svg { width: 18px; height: 18px; }
.gc-account-quick-list strong { align-self: end; overflow: hidden; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.gc-account-quick-list small { align-self: start; overflow: hidden; color: var(--gc-muted); font-size: 7px; white-space: nowrap; text-overflow: ellipsis; }

/* Account endpoint forms, addresses, downloads and order tables */
.gc-account-content > p:first-child { margin-top: 0; }
.gc-account-content h2,
.gc-account-content h3 { color: var(--gc-text); }
.gc-account-content .woocommerce-Addresses { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.gc-account-content .woocommerce-Address { width: auto; float: none; margin: 0; padding: 17px; border: 1px solid rgba(255,255,255,.88); border-radius: 18px; background: rgba(255,255,255,.5); }
.gc-account-content .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gc-account-content .woocommerce-Address-title h2 { margin: 0; font-size: 1rem; }
.gc-account-content .woocommerce-Address-title a { padding: 5px 9px; border-radius: 9px; background: var(--gc-primary-soft); color: var(--gc-primary); font-size: 9px; font-weight: 900; }
.gc-account-content address { margin-top: 10px; color: var(--gc-muted); font-size: 11px; font-style: normal; }
.gc-account-content form .form-row { margin-bottom: 12px; padding: 0; }
.gc-account-content form .form-row-first,
.gc-account-content form .form-row-last { width: calc(50% - 6px); }
.gc-account-content label { margin-bottom: 5px; color: #4f5663; font-size: 10px; font-weight: 850; }
.gc-account-content .required { color: #d94355; }
.gc-account-content input.input-text,
.gc-account-content input[type="text"],
.gc-account-content input[type="email"],
.gc-account-content input[type="tel"],
.gc-account-content input[type="password"],
.gc-account-content select,
.gc-account-content textarea,
.gc-account-guest .woocommerce input.input-text {
  min-height: 46px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(28,34,48,.09);
  border-radius: 13px;
  outline: 0;
  background: rgba(255,255,255,.74);
  color: var(--gc-text);
  font-family: inherit;
  font-size: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
  transition: .2s border-color, .2s box-shadow, .2s background;
}
.gc-account-content textarea { min-height: 110px; resize: vertical; }
.gc-account-content input:focus,
.gc-account-content select:focus,
.gc-account-content textarea:focus,
.gc-account-guest .woocommerce input.input-text:focus { border-color: color-mix(in srgb, var(--gc-primary) 38%, transparent); background: #fff; box-shadow: 0 0 0 4px var(--gc-primary-soft); }
.gc-account-content fieldset { margin: 20px 0 0; padding: 16px; border: 1px solid var(--gc-line); border-radius: 17px; }
.gc-account-content legend { padding: 0 7px; font-size: 10px; font-weight: 900; }
.gc-account-content .button,
.gc-account-content button.button,
.gc-account-guest .woocommerce button.button {
  min-height: 42px;
  padding: 8px 15px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--gc-primary), color-mix(in srgb, var(--gc-primary) 75%, #25d59a)) !important;
  box-shadow: 0 9px 19px color-mix(in srgb, var(--gc-primary) 18%, transparent);
  color: #fff !important;
  font-family: inherit;
  font-size: 10px !important;
  font-weight: 900 !important;
}
.gc-account-content .button:hover,
.gc-account-content button.button:hover,
.gc-account-guest .woocommerce button.button:hover { filter: brightness(.97); transform: translateY(-1px); }
.gc-account-content table.shop_table { overflow: hidden; border: 1px solid rgba(28,34,48,.07); border-collapse: separate; border-spacing: 0; border-radius: 16px; background: rgba(255,255,255,.55); font-size: 10px; }
.gc-account-content table.shop_table th { padding: 12px 10px; border: 0; border-bottom: 1px solid var(--gc-line); background: rgba(246,248,250,.75); color: #4c5360; font-size: 9px; font-weight: 900; }
.gc-account-content table.shop_table td { padding: 12px 10px; border: 0; border-bottom: 1px solid var(--gc-line); vertical-align: middle; }
.gc-account-content table.shop_table tr:last-child td { border-bottom: 0; }
.gc-account-content table.shop_table .button { min-height: 32px; margin: 2px; padding: 5px 9px !important; font-size: 8px !important; box-shadow: none; }
.gc-account-content mark { padding: 2px 6px; border-radius: 7px; background: var(--gc-primary-soft); color: var(--gc-primary); }
.gc-account-content .woocommerce-pagination { margin-top: 16px; }
.gc-account-content .woocommerce-pagination .button { margin: 0 3px; }
.gc-account-content .woocommerce-order-details,
.gc-account-content .woocommerce-customer-details { margin-top: 18px; }
.gc-account-content .woocommerce-customer-details address { padding: 15px; border: 1px solid var(--gc-line); border-radius: 15px; background: rgba(255,255,255,.55); }
.gc-account-content .woocommerce-PaymentMethods { margin: 0 0 15px; padding: 0; list-style: none; }
.gc-account-content .woocommerce-PaymentMethod { padding: 13px; border: 1px solid var(--gc-line); border-radius: 14px; background: rgba(255,255,255,.54); }

/* Full-width shopping list inside account */
.gc-account-shopping-list .gc-shopping-list-toolbar { padding: 11px 13px; border-radius: 14px; background: rgba(255,255,255,.6); }
.gc-account-shopping-list .gc-shopping-list-items { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gc-account-shopping-list .gc-shopping-list-item { grid-template-columns: 92px minmax(0,1fr); padding: 11px; }
.gc-account-shopping-list .gc-shopping-list-thumb { width: 92px; height: 92px; }
.gc-account-shopping-list .gc-shopping-list-title { font-size: 12px; }
.gc-account-shopping-list .gc-shopping-list-meta > span { font-size: 11px; }
.gc-account-shopping-list .gc-list-primary { min-height: 35px; }

/* Login and registration state */
body.gc-account-guest .gc-content-card { padding: 0; }
.gc-account-guest .woocommerce { max-width: 960px; margin-inline: auto; }
.gc-account-guest .woocommerce-notices-wrapper { margin-bottom: 12px; }
.gc-account-guest .woocommerce h2 { margin: 0 0 12px; font-size: 1.25rem; }
.gc-account-guest .woocommerce .u-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.gc-account-guest .woocommerce .u-column1,
.gc-account-guest .woocommerce .u-column2 { width: auto; float: none; padding: 25px; border: 1px solid var(--gc-border); border-radius: 25px; background: var(--gc-surface); box-shadow: var(--gc-shadow-soft); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.gc-account-guest .woocommerce form.login,
.gc-account-guest .woocommerce form.register { margin: 0; padding: 0; border: 0; }
.gc-account-guest .woocommerce form .form-row { margin: 0 0 12px; padding: 0; }
.gc-account-guest .woocommerce label { color: #4f5663; font-size: 10px; font-weight: 850; }
.gc-account-guest .woocommerce .woocommerce-form-login__rememberme { display: inline-flex; align-items: center; gap: 6px; }
.gc-account-guest .woocommerce .lost_password { margin: 12px 0 0; font-size: 10px; }
.gc-account-guest .woocommerce .lost_password a { color: var(--gc-primary); font-weight: 850; }
.gc-account-guest .woocommerce-password-strength { margin-top: 5px; padding: 6px; border-radius: 9px; font-size: 8px; }

@media (max-width: 1160px) {
  .gc-account-layout { grid-template-columns: 225px minmax(0,1fr); }
  .gc-account-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gc-account-dashboard-grid { grid-template-columns: 1fr; }
  .gc-account-quick-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .gc-account-hero { min-height: 0; padding: 22px; align-items: flex-start; flex-direction: column; }
  .gc-account-hero-actions { width: 100%; }
  .gc-account-hero-btn { flex: 1; }
  .gc-account-layout { display: block; }
  .woocommerce-MyAccount-navigation.gc-account-nav { position: static; margin-bottom: 12px; padding: 9px; overflow: hidden; }
  .gc-account-nav-user,
  .gc-account-support-card { display: none; }
  .woocommerce-MyAccount-navigation.gc-account-nav ul { overflow-x: auto; display: flex; gap: 6px; scrollbar-width: thin; scroll-snap-type: x proximity; }
  .woocommerce-MyAccount-navigation.gc-account-nav li { flex: 0 0 auto; margin: 0; scroll-snap-align: start; }
  .woocommerce-MyAccount-navigation.gc-account-nav li a { min-height: 42px; padding: 5px 9px; white-space: nowrap; }
  .woocommerce-MyAccount-navigation.gc-account-nav li a:hover { transform: none; }
  .gc-account-nav-icon { width: 29px; height: 29px; flex-basis: 29px; }
  .gc-account-nav-arrow { display: none; }
  .woocommerce-MyAccount-navigation-link--customer-logout { margin-top: 0 !important; padding-top: 0 !important; border-top: 0 !important; }
  .gc-account-content .woocommerce-Addresses { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body.gc-account-screen .gc-container { width: min(calc(100% - 14px), var(--gc-container)); }
  .gc-account-hero { margin-bottom: 10px; padding: 17px; border-radius: 22px; }
  .gc-account-hero-user { align-items: flex-start; gap: 12px; }
  .gc-account-avatar { width: 62px; height: 62px; flex-basis: 62px; padding: 3px; border-radius: 20px; }
  .gc-account-avatar img { border-radius: 16px; }
  .gc-account-online { width: 15px; height: 15px; bottom: 3px; border-width: 3px; }
  .gc-account-hero h1 { font-size: 1.08rem !important; }
  .gc-account-hero p { font-size: 9px; }
  .gc-account-hero-actions { gap: 6px; }
  .gc-account-hero-btn { min-height: 42px; padding: 7px 9px; border-radius: 12px; font-size: 9px; }
  .woocommerce-MyAccount-content.gc-account-content { min-height: 420px; padding: 15px; border-radius: 20px; }
  .gc-account-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .gc-account-dashboard-head { flex-direction: row; }
  .gc-account-section-head h2 { font-size: 1.05rem; }
  .gc-account-date { align-self: flex-start; }
  .gc-account-stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
  .gc-account-stat { min-height: 112px; padding: 11px; grid-template-columns: 36px minmax(0,1fr); gap: 8px; border-radius: 16px; }
  .gc-account-stat-icon { width: 36px; height: 36px; border-radius: 12px; }
  .gc-account-stat-icon svg { width: 18px; height: 18px; }
  .gc-account-stat strong { font-size: 1.05rem; }
  .gc-account-stat strong.gc-account-money { font-size: .7rem; }
  .gc-account-panel { padding: 13px; border-radius: 17px; }
  .gc-account-order-row { grid-template-columns: 34px minmax(75px,1fr) auto 13px; gap: 7px; }
  .gc-account-order-icon { width: 34px; height: 34px; }
  .gc-account-order-total { display: none; }
  .gc-account-quick-list { grid-template-columns: 1fr; }
  .gc-account-content form .form-row-first,
  .gc-account-content form .form-row-last { width: 100%; float: none; }
  .gc-account-shopping-list .gc-shopping-list-items { grid-template-columns: 1fr; }
  .gc-account-guest .woocommerce .u-columns { grid-template-columns: 1fr; }
  .gc-account-guest .woocommerce .u-column1,
  .gc-account-guest .woocommerce .u-column2 { padding: 19px; border-radius: 20px; }
  .gc-account-content table.shop_table_responsive thead { display: none; }
  .gc-account-content table.shop_table_responsive tbody tr { display: block; padding: 8px; border-bottom: 1px solid var(--gc-line); }
  .gc-account-content table.shop_table_responsive tbody tr:last-child { border-bottom: 0; }
  .gc-account-content table.shop_table_responsive tr td { min-height: 37px; padding: 8px 6px !important; display: flex !important; align-items: center; justify-content: space-between; gap: 10px; border: 0; text-align: left !important; }
  .gc-account-content table.shop_table_responsive tr td::before { float: none; color: var(--gc-muted); font-size: 8px; font-weight: 850; }
}

@media (max-width: 430px) {
  .gc-account-hero-btn span { font-size: 8px; }
  .gc-account-stats { grid-template-columns: 1fr 1fr; }
  .gc-account-stat { grid-template-columns: 32px minmax(0,1fr); min-height: 103px; }
  .gc-account-stat-icon { width: 32px; height: 32px; }
  .gc-account-stat em { display: none; }
  .gc-account-shopping-list .gc-shopping-list-item { grid-template-columns: 75px minmax(0,1fr); }
  .gc-account-shopping-list .gc-shopping-list-thumb { width: 75px; height: 75px; }
}

/* Enhanced guest account welcome and auth cards */
.gc-account-guest-welcome {
  position: relative;
  min-height: 165px;
  margin-bottom: 16px;
  padding: 25px 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 66px minmax(0,1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gc-border);
  border-radius: 27px;
  background:
    radial-gradient(circle at 4% 0%, color-mix(in srgb, var(--gc-primary-2) 18%, transparent), transparent 30%),
    radial-gradient(circle at 98% 100%, color-mix(in srgb, var(--gc-primary) 20%, transparent), transparent 32%),
    var(--gc-surface);
  box-shadow: var(--gc-shadow);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}
.gc-account-guest-welcome::after { content: ""; position: absolute; left: 15%; bottom: -85px; width: 145px; height: 145px; border: 1px solid rgba(255,255,255,.75); border-radius: 42px; background: rgba(255,255,255,.2); transform: rotate(18deg); }
.gc-account-guest-welcome > * { position: relative; z-index: 1; }
.gc-account-guest-welcome-icon { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 21px; background: linear-gradient(145deg, color-mix(in srgb, var(--gc-primary) 13%, #fff), rgba(255,255,255,.66)); box-shadow: 0 13px 27px color-mix(in srgb, var(--gc-primary) 13%, transparent); color: var(--gc-primary); }
.gc-account-guest-welcome-icon svg { width: 32px; height: 32px; }
.gc-account-guest-welcome h1 { margin: 0; padding: 0; border: 0; background: transparent; box-shadow: none; font-size: clamp(1.35rem, 2.4vw, 2rem) !important; }
.gc-account-guest-welcome h1::before { display: none; }
.gc-account-guest-welcome p { max-width: 590px; margin: 3px 0 0; color: var(--gc-muted); font-size: 10px; }
.gc-account-guest-benefits { display: grid; gap: 7px; }
.gc-account-guest-benefits span { padding: 6px 9px; display: flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.85); border-radius: 11px; background: rgba(255,255,255,.54); color: #515864; font-size: 8px; font-weight: 850; white-space: nowrap; }
.gc-account-guest-benefits svg { width: 14px; height: 14px; color: var(--gc-primary); }
.gc-account-guest .woocommerce .u-column1.gc-account-auth-card,
.gc-account-guest .woocommerce .u-column2.gc-account-auth-card { position: relative; overflow: hidden; }
.gc-account-auth-card::after { content: ""; position: absolute; top: -48px; left: -48px; width: 105px; height: 105px; border-radius: 34px; background: color-mix(in srgb, var(--gc-primary) 6%, transparent); transform: rotate(22deg); pointer-events: none; }
.gc-account-auth-head { position: relative; z-index: 1; margin-bottom: 17px; display: flex; align-items: center; gap: 11px; }
.gc-account-auth-number { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 39px; border-radius: 13px; background: var(--gc-primary-soft); color: var(--gc-primary); font-size: 10px; font-weight: 950; direction: ltr; }
.gc-account-auth-head h2 { margin: 0 !important; font-size: 1.08rem !important; }
.gc-account-auth-head p { margin: 0; color: var(--gc-muted); font-size: 8px; }
.gc-account-auth-columns--login-only { grid-template-columns: minmax(300px, 520px) !important; justify-content: center; }
.gc-account-login-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gc-account-lost-password { color: var(--gc-primary); font-size: 9px; font-weight: 850; }
.gc-account-password-note { padding: 10px; border: 1px solid color-mix(in srgb, var(--gc-primary-2) 12%, transparent); border-radius: 11px; background: color-mix(in srgb, var(--gc-primary-2) 6%, #fff); color: var(--gc-muted); font-size: 9px; }

@media (max-width: 760px) {
  .gc-account-guest-welcome { min-height: 0; padding: 18px; grid-template-columns: 52px minmax(0,1fr); border-radius: 21px; }
  .gc-account-guest-welcome-icon { width: 52px; height: 52px; border-radius: 17px; }
  .gc-account-guest-welcome-icon svg { width: 25px; height: 25px; }
  .gc-account-guest-welcome h1 { font-size: 1.12rem !important; }
  .gc-account-guest-benefits { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .gc-account-guest-benefits span { justify-content: center; padding: 6px 4px; white-space: normal; text-align: center; }
  .gc-account-login-actions { align-items: flex-start; flex-direction: column; }
}
