/* GSB Helmet – Lovable light red theme */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --background: #ffffff;
  --foreground: #121212;
  --card: #ffffff;
  --card-foreground: #121212;
  --primary: #eb1414;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --radius: 0rem;
  --glass: #ffffff;
  --glass-border: #e5e5e5;
  --glow-primary: #b91c1c;
  --primary-soft: rgba(235, 20, 20, 0.16);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 575.98px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
}

html { font-size: 14px; position: relative; min-height: 100%; }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--foreground);
  background: var(--background);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Prevent horizontal scroll on small viewports */
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}
.gsb-main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* HTMX boosted navigation: progress strip while swapping */
body.htmx-request {
  cursor: wait;
}
body.htmx-request::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100001;
  background: linear-gradient(90deg, var(--primary), #f472b6);
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.04em;
}

/* Focus */
.btn:focus, .btn:active:focus, .nav-link:focus, .form-control:focus {
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--primary-soft);
  outline: none;
}

/* Header wrap: fixed, Shopify-style white bar */
.gsb-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.gsb-header-wrap .gsb-navbar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  border-bottom: none;
}
.gsb-store-banner {
  background: var(--primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  text-align: center;
}
.gsb-store-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.gsb-store-banner-label {
  opacity: 0.95;
}
.gsb-store-banner-countries {
  font-weight: 600;
}

.gsb-navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 0.75rem 1rem; }
.gsb-navbar .gsb-brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.gsb-navbar .gsb-brand span { color: var(--primary); }
.gsb-navbar .gsb-brand:hover { color: var(--foreground); }
.gsb-navbar .gsb-brand:hover .gsb-brand-wordmark {
  color: var(--foreground);
}

/* Default nav: fox tile + Oswald wordmark (matches hero / nav weight) */
.gsb-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.gsb-brand-mark-wrap {
  width: clamp(52px, 6.5vw, 68px);
  height: clamp(52px, 6.5vw, 68px);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0a0a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gsb-brand--default-lockup:hover .gsb-brand-mark-wrap {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.gsb-navbar .gsb-brand-img--mark {
  display: block;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top center;
  margin: 0;
}
.gsb-brand-wordmark {
  font-family: 'Oswald', 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--foreground);
  text-decoration: none;
}
@media (max-width: 380px) {
  .gsb-brand-lockup { gap: 0.45rem; }
  .gsb-brand-wordmark { font-size: 1.35rem; letter-spacing: 0.1em; }
  .gsb-brand-mark-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

/* Custom logo URL from admin: single image, larger */
.gsb-navbar .gsb-brand-img--full {
  height: clamp(52px, 6.5vw, 68px);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  display: block;
}

.gsb-footer .gsb-brand-img--footer {
  height: clamp(48px, 5vw, 60px);
  width: auto;
  max-width: min(120px, 55vw);
  object-fit: contain;
  display: block;
}
.gsb-logo-animate { display: inline-block; }
.gsb-logo-festival { animation: gsb-logo-glow 2s ease-in-out infinite; }
.gsb-logo-diwali { animation: gsb-logo-glow 2s ease-in-out infinite; filter: drop-shadow(0 0 8px rgba(0, 128, 96, 0.4)); }
.gsb-logo-holi { animation: gsb-logo-rainbow 3s ease-in-out infinite; }
@keyframes gsb-logo-glow { 0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(0, 128, 96, 0.3)); } 50% { opacity: 0.95; filter: drop-shadow(0 0 12px rgba(0, 128, 96, 0.5)); } }
@keyframes gsb-logo-rainbow { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }
/* Desktop / tablet: horizontal nav (must not apply on mobile or it overrides display:none on the collapsible menu) */
@media (min-width: 768px) {
  .gsb-navbar .gsb-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    min-width: 0;
  }
}
.gsb-navbar .gsb-nav-cta { flex-shrink: 0; }
.gsb-navbar .gsb-nav-icon-btn { flex-shrink: 0; }
.gsb-navbar .gsb-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.4;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.gsb-navbar .gsb-nav-links a i { flex-shrink: 0; vertical-align: middle; }
.gsb-navbar .gsb-nav-links a:hover, .gsb-navbar .gsb-nav-links a.active { color: var(--primary); }

/* Categories dropdown */
.gsb-nav-dropdown-wrap { position: relative; display: inline-block; }
.gsb-nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: inherit;
  font-family: inherit;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.gsb-nav-dropdown-trigger:hover,
.gsb-nav-dropdown-trigger.active { color: var(--primary); }
.gsb-nav-dropdown-trigger::after {
  content: '';
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 2px;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.gsb-nav-dropdown-wrap.gsb-dropdown-open .gsb-nav-dropdown-trigger::after { transform: rotate(-135deg); }
.gsb-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin-top: 0.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 0.45rem 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
/* Sub-links only on click (arrow), not on hover — see site.js toggle */
.gsb-nav-dropdown-wrap.gsb-dropdown-open .gsb-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gsb-nav-dropdown a {
  display: block !important;
  width: 100%;
  padding: 0.5rem 0.95rem !important;
  color: #1f2937 !important;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  border-radius: 0;
  background: transparent !important;
}
.gsb-nav-dropdown a:hover { color: var(--primary) !important; background: #f9fafb !important; }
.gsb-nav-dropdown > a:first-of-type { font-weight: 700; color: #111827 !important; }
.gsb-nav-dd-count {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.85em;
}
.gsb-nav-dd-group {
  position: relative;
  width: 100%;
}
.gsb-nav-dd-parent {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.gsb-nav-dd-parent > a {
  flex: 1;
  min-width: 0;
}
.gsb-nav-dd-toggle {
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1;
  align-self: stretch;
  display: none;
}
@media (min-width: 768px) {
  .gsb-nav-dd-group:hover .gsb-nav-dd-children,
  .gsb-nav-dd-group:focus-within .gsb-nav-dd-children {
    display: block;
  }
  .gsb-nav-dd-children {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 2px;
    min-width: 220px;
    max-width: min(300px, 72vw);
    max-height: min(420px, 72vh);
    overflow-y: auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 0.35rem 0;
    z-index: 1002;
  }
  .gsb-nav-dd-children a {
    white-space: normal !important;
    font-weight: 500 !important;
  }
  .gsb-nav-dd-children a:first-child {
    font-weight: 700 !important;
    color: #111827 !important;
  }
}
@media (max-width: 767.98px) {
  .gsb-nav-dd-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
  }
  .gsb-nav-dd-children {
    display: none;
    padding: 0.15rem 0 0.35rem 0.85rem;
    margin: 0;
    border-left: 2px solid var(--border);
    margin-left: 0.5rem;
  }
  .gsb-nav-dd-group.gsb-nav-dd-open .gsb-nav-dd-children {
    display: block;
  }
}

.gsb-navbar .gsb-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s;
}
.gsb-navbar .gsb-nav-cta:hover { filter: brightness(1.1); color: var(--primary-foreground); }

/* Nav search bar */
/* Search overlay – full-screen modal with suggestions + product results */
.gsb-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}
.gsb-search-overlay.gsb-search-overlay-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gsb-search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.gsb-search-overlay-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.25rem;
}
.gsb-search-overlay-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.gsb-search-overlay-form-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0.5rem;
}
.gsb-search-overlay-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
}
.gsb-search-overlay-input::placeholder { color: var(--muted-foreground); }
.gsb-search-overlay-input:focus { outline: none; }
.gsb-search-overlay-submit {
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
}
.gsb-search-overlay-submit:hover { color: var(--foreground); }
.gsb-search-overlay-close {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.gsb-search-overlay-close:hover { color: var(--foreground); background: var(--secondary); }
.gsb-search-suggestions-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  display: block;
  margin-bottom: 0.5rem;
}
.gsb-search-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.gsb-search-suggestions-list a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}
.gsb-search-suggestions-list a:hover { text-decoration: underline; }
.gsb-search-overlay-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gsb-search-overlay-product {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem;
  background: var(--secondary);
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}
.gsb-search-overlay-product:hover { border-color: var(--primary); background: var(--card); }
.gsb-search-overlay-product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.gsb-search-overlay-product-info { flex: 1; min-width: 0; }
.gsb-search-overlay-product-name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.gsb-search-overlay-product-price {
  font-size: 0.9375rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.gsb-search-overlay-product-swatches {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.gsb-search-overlay-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.gsb-search-overlay-all-wrap {
  text-align: center;
  padding-top: 0.5rem;
}
.gsb-search-overlay-view-all {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.gsb-search-overlay-view-all:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gsb-search-form {
  display: inline-flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gsb-search-input {
  width: 160px;
  padding: 0.4rem 0.6rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 0.9rem;
}
.gsb-search-input::placeholder { color: var(--muted-foreground); }
.gsb-search-input:focus { outline: none; }
.gsb-search-btn {
  padding: 0.4rem 0.5rem;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsb-search-btn:hover { color: var(--primary); }
@media (max-width: 991px) {
  .gsb-search-form { width: 100%; }
  .gsb-search-input { flex: 1; min-width: 0; width: auto; }
}

/* Mobile menu */
.gsb-nav-toggle {
  display: none;
  position: relative;
  z-index: 1005;
  background: none;
  border: none;
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.gsb-nav-toggle svg {
  pointer-events: none;
  display: block;
}
.gsb-nav-toggle:hover { background: var(--secondary); }
@media (max-width: 767px) {
  .gsb-nav-toggle { display: inline-flex; }
  .gsb-navbar .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 0;
  }
  .gsb-navbar .container > .gsb-brand { order: 1; flex: 1; min-width: 0; }
  .gsb-navbar .container > .gsb-nav-toggle { order: 2; }
  .gsb-navbar .container > .gsb-nav-links { order: 3; width: 100%; flex: 1 1 100%; }
  /* Same specificity as desktop .gsb-navbar .gsb-nav-links so hide/show toggles correctly */
  .gsb-navbar .gsb-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.25rem;
    padding: 0.5rem 0 0;
    margin-top: 0.25rem;
    border-top: 1px solid var(--border);
    max-height: min(70vh, 400px);
    overflow-y: auto;
    min-width: 0;
  }
  .gsb-navbar .gsb-nav-links.gsb-open {
    display: flex;
  }
  .gsb-nav-links a,
  .gsb-nav-dropdown-trigger {
    padding: 0.65rem 0.75rem;
    width: 100%;
    text-align: left;
    min-height: 44px;
    box-sizing: border-box;
  }
  .gsb-nav-dropdown-wrap { width: 100%; }
  .gsb-nav-dropdown {
    position: static;
    margin-top: 0;
    margin-bottom: 0.5rem;
    margin-left: 0.75rem;
    box-shadow: none;
    border: 1px solid var(--border);
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.2s ease;
  }
  .gsb-nav-dropdown-wrap.gsb-dropdown-open .gsb-nav-dropdown {
    max-height: min(70vh, 520px);
    padding: 0.5rem 0;
  }
  .gsb-search-form { width: 100%; margin: 0.25rem 0; }
  .gsb-nav-cta { justify-content: center; min-height: 44px; }
  .gsb-nav-icon-btn { min-width: 44px; height: 44px; }
}

/* Main content offset for fixed nav */
.gsb-main {
  padding-top: 4.5rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  min-height: 100vh;
  min-height: 100dvh;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
body.gsb-has-store-banner .gsb-main { padding-top: 6.25rem; }
@media (max-width: 767px) {
  .gsb-main { padding-top: 5rem; padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 575.98px) {
  .gsb-main { padding-top: 4.5rem; padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px)); }
}

/* Product / promo banner on home (admin-configured) */
.gsb-product-banner {
  padding: 0 0 1rem;
}
.gsb-product-banner .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.gsb-product-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gsb-product-banner-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gsb-product-banner-caption {
  display: block;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}
.gsb-product-banner-link .gsb-product-banner-caption {
  color: var(--foreground);
}
.gsb-product-banner-link:hover .gsb-product-banner-caption {
  color: var(--primary);
}

/* Banner carousel (multiple ads, animated) */
.gsb-banner-carousel {
  position: relative;
  padding: 0 0 1rem;
  overflow: hidden;
}
.gsb-banner-carousel-inner {
  position: relative;
  width: 100%;
}
.gsb-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.gsb-banner-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gsb-banner-carousel .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.gsb-banner-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gsb-banner-slide-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gsb-banner-caption {
  display: block;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}
.gsb-banner-slide-link .gsb-banner-caption { color: var(--foreground); }
.gsb-banner-slide-link:hover .gsb-banner-caption { color: var(--primary); }

.gsb-banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
  color: var(--foreground);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.gsb-banner-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.gsb-banner-prev { left: 0.75rem; }
.gsb-banner-next { right: 0.75rem; }

.gsb-banner-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0 1rem;
}
.gsb-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.gsb-banner-dot:hover { background: var(--muted-foreground); }
.gsb-banner-dot.active { background: var(--primary); transform: scale(1.2); }

@media (max-width: 575.98px) {
  .gsb-banner-slide-img { max-height: 200px; }
  .gsb-banner-btn { width: 36px; height: 36px; font-size: 1.25rem; }
  .gsb-banner-prev { left: 0.5rem; }
  .gsb-banner-next { right: 0.5rem; }
}

/* Hero – Shopify-style clean section */
.gsb-hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 55%);
  border: none;
}
.gsb-hero .container { position: relative; z-index: 1; }
.gsb-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 767px) {
  .gsb-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .gsb-hero .lead { max-width: none; }
  .gsb-hero .gsb-hero-btns { justify-content: center; }
  .gsb-hero-stats { justify-content: center; gap: 1.5rem; }
  .gsb-hero-image img { max-height: 260px; }
}
@media (max-width: 575.98px) {
  .gsb-hero { min-height: auto; padding: 1.5rem 0; }
  .gsb-hero h1 { font-size: 1.75rem; }
  .gsb-hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .gsb-hero-stats .stat-value { font-size: 1.25rem; }
}
.gsb-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(235, 20, 20, 0.28);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.gsb-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; color: var(--foreground); }
.gsb-hero .lead { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 1.5rem; max-width: 540px; line-height: 1.6; }
.gsb-hero .gsb-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.gsb-hero .btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.gsb-hero .btn-primary:hover { background: #c20f16; transform: translateY(-1px); }
.gsb-hero .btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.gsb-hero .btn-outline:hover { border-color: var(--foreground); color: var(--foreground); }
.gsb-hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.gsb-hero-stats .stat-value { font-size: 1.25rem; font-weight: 700; color: var(--foreground); }
.gsb-hero-stats .stat-label { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }
.gsb-hero-image { text-align: center; }
.gsb-hero-image img { max-width: 100%; height: auto; max-height: 320px; object-fit: contain; }

/* Section titles – Shopify-style */
.gsb-section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.gsb-section-title { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; color: var(--foreground); }
.gsb-section-subtitle { color: var(--muted-foreground); margin-bottom: 2rem; font-size: 1rem; }

/* Product cards – Shopify-style clean tiles */
.gsb-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.gsb-card:hover {
  box-shadow: var(--shadow-card);
  border-color: #d1d5db;
}
.gsb-card-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  background: var(--secondary);
}
.gsb-card-body { padding: 1rem 1.25rem; }
.gsb-card-body .category { font-size: 0.6875rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; font-weight: 600; }
.gsb-card-body .name { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; color: var(--foreground); }
.gsb-card-body .cert { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.gsb-card-body .price { font-weight: 600; font-size: 1rem; color: var(--foreground); }
.gsb-card-body .btn-view { margin-top: 0.5rem; display: inline-block; color: var(--primary); font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.gsb-card-body .btn-view:hover { text-decoration: underline; }

/* Product grid */
.gsb-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
}
@media (max-width: 400px) {
  .gsb-product-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Tech section */
.gsb-tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.gsb-tech-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.gsb-tech-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.gsb-tech-card .icon { width: 48px; height: 48px; margin-bottom: 1rem; color: var(--primary); }
.gsb-tech-card .icon svg { width: 100%; height: 100%; }
.gsb-tech-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.gsb-tech-card p { color: var(--muted-foreground); font-size: 0.9375rem; margin-bottom: 0.5rem; }
.gsb-tech-card .spec { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--primary); }

/* Category banner – Shopify-style links */
.gsb-category-banner { padding: 2.5rem 0; background: var(--background); border-top: 1px solid var(--border); }
.gsb-category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
@media (max-width: 575.98px) {
  .gsb-category-banner { padding: 1.5rem 0; }
  .gsb-category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gsb-category-item { padding: 0.85rem; }
}
.gsb-category-item {
  display: block;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.gsb-category-item:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.gsb-category-item .cat-name { font-weight: 600; display: block; }
.gsb-category-item .cat-count { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* Footer – Shopify-style light gray */
.gsb-footer {
  background: #f6f6f7;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
  margin-top: 3rem;
}
.gsb-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.gsb-footer h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--foreground); font-weight: 600; margin-bottom: 1rem; }
.gsb-footer ul { list-style: none; padding: 0; margin: 0; }
.gsb-footer ul li { margin-bottom: 0.5rem; }
.gsb-footer ul a { color: var(--muted-foreground); text-decoration: none; font-size: 0.9375rem; }
.gsb-footer ul a:hover { color: var(--primary); }
.gsb-footer ul a i {
  font-size: 0.72rem;
  opacity: 0.75;
  margin-right: 0.35rem;
}
.gsb-footer .gsb-brand { font-weight: 700; font-size: 1.25rem; letter-spacing: 0.06em; color: var(--foreground); }
.gsb-footer .gsb-brand span { color: var(--primary); }
.gsb-footer .tagline { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 0.5rem; margin-bottom: 1rem; max-width: 260px; line-height: 1.5; }
.gsb-social-links { display: flex; gap: 0.75rem; align-items: center; }
.gsb-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.gsb-social-icon:hover { color: var(--primary); }
.gsb-social-icon svg { display: block; }
.gsb-footer .contact-item { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground); font-size: 0.9375rem; margin-bottom: 0.5rem; }
.gsb-footer .contact-item i {
  color: var(--primary);
  font-size: 0.9rem;
}
.gsb-footer .contact-item a { color: var(--muted-foreground); text-decoration: none; }
.gsb-footer .contact-item a:hover { color: var(--foreground); }
.gsb-footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
@media (max-width: 575.98px) {
  .gsb-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .gsb-footer .tagline { max-width: none; }
  .gsb-footer-bottom { flex-direction: column; padding-top: 1.5rem; text-align: center; }
}
.gsb-footer-bottom .copy { color: var(--muted-foreground); font-size: 0.875rem; }
.gsb-footer-bottom .legal { display: flex; gap: 1rem; }
.gsb-footer-bottom .legal a { color: var(--muted-foreground); font-size: 0.875rem; text-decoration: none; }
.gsb-footer-bottom .legal a:hover { color: var(--foreground); }

.gsb-newsletter-flash {
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1rem !important;
}
.gsb-footer-newsletter-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0 0 0.75rem;
  max-width: 280px;
}
.gsb-footer-newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
.gsb-footer-newsletter-input {
  flex: 1;
  min-width: 140px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
}
.gsb-footer-newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-soft);
}
.gsb-footer-newsletter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  cursor: pointer;
  white-space: nowrap;
}
.gsb-footer-newsletter-btn:hover {
  filter: brightness(1.08);
}
.gsb-footer-newsletter-privacy {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
}
.gsb-footer-newsletter-privacy a { color: var(--muted-foreground); text-decoration: none; }
.gsb-footer-newsletter-privacy a:hover { color: var(--primary); text-decoration: underline; }
@media (max-width: 767px) {
  .gsb-footer-newsletter-text { max-width: none; }
  .gsb-footer-newsletter-row { flex-direction: column; }
  .gsb-footer-newsletter-btn { width: 100%; }
}

/* Buttons (Bootstrap overrides if still used) */
.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
}
.btn-primary:hover { filter: brightness(1.1); }
.text-muted { color: var(--muted-foreground) !important; }

/* Utilities */
.py-5 { padding-top: 2rem; padding-bottom: 2rem; }
.border-top { border-top: 1px solid var(--border); }

/* Nav icon buttons (Cart, Login, Sign up) */
.gsb-nav-icon-btn {
  padding: 0.5rem !important;
  min-width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
}
.gsb-nav-icon { flex-shrink: 0; display: block; }
.gsb-cart-link { position: relative; }
.gsb-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gsb-wishlist-nav-link { position: relative; color: inherit !important; text-decoration: none !important; }
.gsb-wishlist-nav-link:hover { color: var(--primary) !important; }
.gsb-wishlist-inline-form { display: inline-flex; margin: 0; align-items: center; justify-content: center; vertical-align: middle; }
.gsb-wishlist-inline-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--foreground);
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
body.gsb-dark .gsb-wishlist-inline-btn { background: rgba(30, 30, 35, 0.95); }
.gsb-wishlist-inline-btn:hover { border-color: var(--primary); color: var(--primary); }
.gsb-wishlist-inline-btn.is-active { color: #e11d48; border-color: rgba(225, 29, 72, 0.45); }
.gsb-wishlist-card-btn { width: 36px; height: 36px; min-width: 36px; }
.gsb-vortex-actions .gsb-wishlist-inline-form { flex: 0 0 auto; }
.gsb-detail-wishlist .gsb-wishlist-inline-form { display: inline-flex; }
.gsb-wishlist-detail-btn { min-width: 48px; min-height: 44px; font-size: 1.2rem; border-radius: 10px; }

/* Auth pages – Login / Sign up */
.gsb-auth-page {
  min-height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.gsb-auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (max-width: 575.98px) {
  .gsb-auth-page { padding: 1.5rem 0; }
  .gsb-auth-card { padding: 1.5rem; margin: 0 0.5rem; }
}
.gsb-auth-card .gsb-brand { font-size: 1rem; margin-bottom: 0.5rem; }
.gsb-auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}
.gsb-auth-card .form-label {
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.gsb-auth-card .form-control {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
}
.gsb-auth-card .form-control:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 2px var(--primary-soft);
  outline: none;
}
.gsb-auth-card .form-control::placeholder { color: var(--muted-foreground); opacity: 0.7; }
.gsb-auth-card .btn-submit {
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  transition: filter 0.2s;
}
.gsb-auth-card .btn-submit:hover { filter: brightness(1.1); color: var(--primary-foreground); }
.gsb-auth-card .auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.gsb-auth-card .auth-switch a { color: var(--primary); font-weight: 600; text-decoration: none; }
.gsb-auth-card .auth-switch a:hover { text-decoration: underline; }
.gsb-auth-card .auth-back { display: inline-block; margin-top: 1rem; color: var(--muted-foreground); text-decoration: none; font-size: 0.875rem; }
.gsb-auth-card .auth-back:hover { color: var(--foreground); }
.gsb-auth-card .form-check-input { background-color: var(--secondary); border-color: var(--border); }
.gsb-auth-card .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.gsb-auth-card .form-check-label { color: var(--muted-foreground); }

/* Profile 2FA */
.gsb-2fa-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.gsb-2fa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.gsb-2fa-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}
.gsb-2fa-text {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}
.gsb-2fa-toggle {
  border: none;
  min-width: 68px;
  height: 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: #fff;
}
.gsb-2fa-toggle.on { background: #16a34a; }
.gsb-2fa-toggle.off { background: #64748b; opacity: 1; }
.gsb-2fa-setup {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}
.gsb-2fa-qr {
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.35rem;
}
.gsb-2fa-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.gsb-2fa-form .form-control {
  flex: 1 1 170px;
}

/* Error message block – red, inline, no popup */
.gsb-auth-errors {
  background: hsl(0 60% 18%);
  border: 1px solid hsl(0 60% 35%);
  color: hsl(0 100% 95%);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.gsb-auth-errors:has(.validation-summary-valid) { display: none; }
.gsb-auth-errors .validation-summary-valid { display: none; }
.gsb-auth-errors .validation-summary-errors { margin: 0; padding: 0; }
.gsb-auth-errors .validation-summary-errors ul { margin: 0; padding-left: 1rem; list-style: disc; }
.gsb-auth-errors .validation-summary-errors li { margin: 0.35rem 0; }
.form-control.input-validation-error { border-color: hsl(0 60% 45%); }
.field-validation-error { color: hsl(0 80% 75%); font-size: 0.8rem; margin-top: 0.25rem; display: block; }

/* Profile icon + dropdown */
.gsb-profile-wrap { position: relative; display: inline-block; }
.gsb-profile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.35rem 0 0;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
}
.gsb-profile-initial { font-weight: 700; font-size: 0.9rem; }
.gsb-profile-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.gsb-profile-role-badge {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  max-width: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .gsb-profile-role-badge { display: none; }
  .gsb-profile-trigger { padding: 0; }
}
.gsb-profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 1100;
  overflow: hidden;
}
.gsb-profile-dropdown[hidden] { display: none !important; }
.gsb-profile-dropdown-head {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: block;
}
.gsb-profile-dropdown-head strong { display: block; color: var(--foreground); margin-bottom: 0.35rem; }
.gsb-profile-dropdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); margin-right: 0.35rem; }
.gsb-profile-dropdown-email { display: block; font-size: 0.8rem; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.gsb-profile-dropdown-role { display: block; font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.gsb-profile-dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.gsb-profile-dropdown-item:hover { background: var(--secondary); }
.gsb-profile-dropdown-item-form { margin: 0; }
.gsb-profile-logout-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0.65rem 1rem;
}

/* Checkout page – two column */
.gsb-checkout { padding: 1.5rem 0 3rem; }
.gsb-checkout-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 1.5rem; }
.gsb-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 991px) {
  .gsb-checkout-grid { grid-template-columns: 1fr; }
}
.gsb-checkout-form-col .form-label { color: var(--muted-foreground); font-weight: 500; margin-bottom: 0.35rem; }
.gsb-checkout-form-col .form-control,
.gsb-checkout-form-col .form-select {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
}
.gsb-checkout-form-col .form-control:focus,
.gsb-checkout-form-col .form-select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft);
}
.gsb-checkout-section {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.gsb-checkout-section h2 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.gsb-checkout-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.gsb-checkout-section-head h2 { margin-bottom: 0; }
.gsb-checkout-signin { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.gsb-checkout-signin:hover { text-decoration: underline; }
.gsb-checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gsb-checkout-row-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 576px) {
  .gsb-checkout-row, .gsb-checkout-row-3 { grid-template-columns: 1fr; }
}
.gsb-checkout-muted { color: var(--muted-foreground); font-size: 0.9rem; margin-bottom: 0.5rem; }
.gsb-checkout-secure { color: var(--muted-foreground); font-size: 0.85rem; margin-bottom: 0.75rem; }
.gsb-payment-option { margin-bottom: 1rem; }
.gsb-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.gsb-radio-label input { accent-color: var(--primary); }
.gsb-checkout-pay-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: filter 0.2s;
}
.gsb-checkout-pay-btn:hover { filter: brightness(1.1); }

.gsb-checkout-legal {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
}
.gsb-checkout-legal a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.gsb-checkout-legal a:hover { text-decoration: underline; }
.gsb-checkout-legal-submit { margin-top: 0.5rem; margin-bottom: 1rem; }

/* Checkout summary (right column) */
.gsb-checkout-summary-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: 5rem;
}
.gsb-checkout-summary-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.gsb-checkout-products { margin-bottom: 1rem; max-height: 320px; overflow-y: auto; }
.gsb-checkout-product {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.gsb-checkout-product:last-child { border-bottom: none; }
.gsb-checkout-product-img-wrap { position: relative; flex-shrink: 0; }
.gsb-checkout-product-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--secondary);
}
.gsb-checkout-product-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gsb-checkout-product-info { flex: 1; min-width: 0; }
.gsb-checkout-product-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.gsb-checkout-product-price { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: var(--muted-foreground); }
.gsb-checkout-summary-rows { border-top: 1px solid var(--border); padding-top: 1rem; }
.gsb-checkout-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; }
.gsb-checkout-total { font-size: 1.1rem; font-weight: 700; margin-top: 0.5rem; margin-bottom: 0; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.gsb-profile-card { max-width: 480px; }
.gsb-profile-links { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.gsb-profile-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
}
.gsb-profile-link-item:hover { text-decoration: underline; }
.gsb-profile-link-item svg { flex-shrink: 0; }

/* My Orders page */
.gsb-my-orders { padding: 1.5rem 0; max-width: 640px; margin: 0 auto; }
.gsb-my-orders .gsb-section-title { margin-bottom: 1rem; }
.gsb-orders-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.gsb-order-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.gsb-order-card-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.gsb-order-number { font-weight: 700; color: var(--foreground); }
.gsb-order-date { color: var(--muted-foreground); font-size: 0.9rem; }
.gsb-order-status {
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}
.gsb-order-status-pending { background: hsl(38 90% 25%); color: hsl(38 100% 90%); }
.gsb-order-status-confirmed { background: hsl(210 90% 25%); color: hsl(210 100% 90%); }
.gsb-order-status-shipped { background: hsl(262 90% 25%); color: hsl(262 100% 90%); }
.gsb-order-status-delivered { background: hsl(142 60% 25%); color: hsl(142 100% 90%); }
.gsb-order-status-cancelled { background: var(--muted); color: var(--muted-foreground); }
.gsb-order-total { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-weight: 600; }

/* Cart drawer – slide from right */
.gsb-cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.25s;
}
.gsb-cart-drawer.gsb-cart-drawer-open {
  pointer-events: auto;
  visibility: visible;
}
.gsb-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s;
}
.gsb-cart-drawer-open .gsb-cart-drawer-backdrop { opacity: 1; }
.gsb-cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border-left: 1px solid var(--border);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (max-width: 575.98px) {
  .gsb-cart-drawer-panel { max-width: 100%; }
  .gsb-cart-drawer-item { grid-template-columns: 56px 1fr auto; gap: 0.5rem; }
  .gsb-cart-drawer-item-img { width: 56px; height: 56px; }
}
.gsb-cart-drawer-open .gsb-cart-drawer-panel { transform: translateX(0); }
.gsb-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.gsb-cart-drawer-title { font-size: 1.125rem; font-weight: 700; margin: 0; }
.gsb-cart-drawer-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.gsb-cart-drawer-close:hover { color: var(--foreground); background: var(--secondary); }
.gsb-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}
.gsb-cart-drawer-empty { color: var(--muted-foreground); margin-bottom: 1rem; }
.gsb-btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 0.2s;
}
.gsb-btn-primary:hover { filter: brightness(1.1); color: var(--primary-foreground); }
.gsb-cart-drawer-body .gsb-btn-primary { display: inline-block; margin-top: 0.5rem; }
.gsb-cart-drawer-items { display: flex; flex-direction: column; gap: 1rem; }
.gsb-cart-drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.gsb-cart-drawer-item:last-child { border-bottom: none; }
.gsb-cart-drawer-item-img-wrap { display: block; flex-shrink: 0; }
.gsb-cart-drawer-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--secondary);
}
.gsb-cart-drawer-item-info { min-width: 0; }
.gsb-cart-drawer-item-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--foreground);
  text-decoration: none;
  margin-bottom: 0.25rem;
}
.gsb-cart-drawer-item-name:hover { color: var(--primary); }
.gsb-cart-drawer-item-price { font-size: 0.85rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.gsb-cart-drawer-item-actions { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.gsb-cart-drawer-qty-form { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.gsb-cart-drawer-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--secondary);
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gsb-cart-drawer-qty-btn:hover:not(:disabled) { background: var(--muted); }
.gsb-cart-drawer-qty-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.gsb-cart-drawer-qty-value { min-width: 2rem; text-align: center; font-size: 0.9rem; }
.gsb-cart-drawer-remove-form { display: inline; }
.gsb-cart-drawer-remove {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.gsb-cart-drawer-remove:hover { color: var(--glow-primary); }
.gsb-cart-drawer-item-total { font-weight: 600; font-family: 'JetBrains Mono', monospace; align-self: start; }
.gsb-cart-drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.gsb-cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.gsb-cart-drawer-discount,
.gsb-cart-drawer-grand {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.gsb-cart-drawer-discount { color: #15803d; font-weight: 600; }
.gsb-cart-drawer-grand {
  font-weight: 700;
  font-size: 0.95rem;
  border-top: 1px dashed var(--border);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.gsb-cart-drawer-note { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.gsb-cart-drawer-view-cart {
  display: block;
  text-align: center;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.gsb-cart-drawer-view-cart:hover { text-decoration: underline; }
.gsb-cart-drawer-checkout-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
}
.gsb-cart-drawer-checkout-btn:hover { filter: brightness(1.1); color: var(--primary-foreground); }

/* Search results page */
.gsb-search-page { padding: 1.5rem 0; }
.gsb-search-count { margin-bottom: 1.5rem; }
.gsb-search-page .gsb-product-grid { margin-top: 1rem; }

/* Wishlist — same vertical rhythm as search; overlay actions visible on touch */
.gsb-wishlist-page {
  padding: 1.5rem 0 2.5rem;
}
.gsb-wishlist-page .gsb-product-grid {
  margin-top: 0.5rem;
}
@media (hover: none), (pointer: coarse) {
  .gsb-wishlist-page .gsb-vortex-media .gsb-vortex-actions {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Store locator — mobile-first: readable filters, map height on small screens */
.gsb-store-locator-page {
  padding: 0.5rem 0 2rem;
  max-width: 100%;
  overflow-x: hidden;
}
.gsb-store-locator-page .gsb-section-title {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  word-break: break-word;
}
.gsb-store-locator-filters .form-select,
.gsb-store-locator-filters .btn {
  min-height: 44px;
}
.gsb-store-locator-list {
  max-height: min(55vh, 420px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 992px) {
  .gsb-store-locator-list {
    max-height: 520px;
  }
}
.gsb-store-locator-map {
  width: 100%;
  min-height: min(55vh, 420px);
  height: 420px;
  border-radius: 12px;
  border: 1px solid var(--border, #dee2e6);
  background: var(--muted, #f1f3f5);
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .gsb-store-locator-map {
    height: min(50vh, 380px);
    min-height: 280px;
  }
}

/* Products page with filter sidebar */
.gsb-products-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 1rem 0 2rem;
  align-items: start;
}
@media (max-width: 991px) {
  .gsb-products-page { grid-template-columns: 1fr; gap: 1.25rem; }
}
.gsb-filter-sidebar,
details.gsb-filter-panel-root {
  position: sticky;
  top: 5.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
details.gsb-filter-panel-root {
  padding: 0;
  align-self: start;
}
.gsb-filter-panel-body {
  padding: 1rem 1.25rem;
}
.gsb-filter-panel-summary {
  display: none;
  list-style: none;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  margin: 0;
  font-weight: 700;
  color: var(--foreground);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.gsb-filter-panel-summary::-webkit-details-marker,
.gsb-filter-panel-summary::marker {
  display: none;
  content: '';
}
.gsb-filter-panel-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border: solid var(--muted-foreground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details.gsb-filter-panel-root[open] .gsb-filter-panel-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.gsb-filter-head--desktop {
  display: block;
}
@media (max-width: 991.98px) {
  details.gsb-filter-panel-root {
    position: static;
  }
  .gsb-filter-panel-summary {
    display: flex;
    border-bottom: 1px solid var(--border);
  }
  .gsb-filter-head--desktop {
    display: none;
  }
  .gsb-filter-panel-body {
    padding: 1rem;
    border-top: none;
  }
}
@media (min-width: 992px) {
  .gsb-filter-sidebar:not(details),
  details.gsb-filter-panel-root {
    padding: 0;
  }
}
.gsb-filter-head { margin-bottom: 1rem; }
.gsb-filter-title { font-size: clamp(0.9375rem, 2vw, 1rem); font-weight: 700; margin: 0; line-height: 1.3; }
.gsb-filter-form { display: flex; flex-direction: column; gap: 1rem; }
.gsb-filter-section { border-top: 1px solid var(--border); padding-top: 1rem; }
.gsb-filter-section:first-of-type { border-top: none; padding-top: 0; }

/* Type filter: names only visible after expanding (arrow / summary click) */
.gsb-filter-details {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.gsb-filter-details:first-of-type { border-top: none; padding-top: 0; }
.gsb-filter-details-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  user-select: none;
}
.gsb-filter-details-summary::-webkit-details-marker { display: none; }
.gsb-filter-details-summary::marker { content: ""; }
.gsb-filter-details-title {
  margin-bottom: 0;
  flex: 1;
}
.gsb-filter-details-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border: solid var(--muted-foreground);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.gsb-filter-details[open] .gsb-filter-details-chevron {
  transform: rotate(-135deg);
}
.gsb-filter-details-body {
  padding-top: 0.75rem;
}
.gsb-filter-section-title {
  font-size: clamp(0.75rem, 1.5vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.gsb-filter-options { display: flex; flex-direction: column; gap: 0.4rem; }
.gsb-filter-options-scroll { max-height: 180px; overflow-y: auto; }
.gsb-filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  line-height: 1.4;
  color: var(--foreground);
  min-height: 1.5rem;
}
.gsb-filter-check input { accent-color: var(--primary); flex-shrink: 0; margin: 0; vertical-align: middle; }
.gsb-filter-price { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.gsb-filter-price .gsb-filter-input {
  width: 5rem;
  min-width: 4rem;
  padding: 0.5rem 0.6rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  line-height: 1.4;
}
@media (max-width: 575.98px) {
  .gsb-filter-price .gsb-filter-input { width: 100%; min-width: 0; flex: 1 1 0; }
  .gsb-filter-price { gap: 0.5rem; }
}
.gsb-filter-price span { color: var(--muted-foreground); font-size: clamp(0.8125rem, 1.5vw, 0.85rem); flex-shrink: 0; }
.gsb-filter-apply {
  padding: 0.55rem 1rem;
  min-height: 44px;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  cursor: pointer;
  margin-top: 0.25rem;
}
.gsb-filter-apply:hover { filter: brightness(1.1); }
.gsb-products-main { min-width: 0; }
.gsb-products-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 575.98px) {
  .gsb-products-head { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .gsb-products-sort { width: 100%; }
  .gsb-sort-form { width: 100%; }
}
.gsb-products-title { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 700; margin: 0 0 0.25rem 0; line-height: 1.25; }
.gsb-products-count { color: var(--muted-foreground); font-size: clamp(0.875rem, 1.5vw, 0.9rem); margin: 0; line-height: 1.4; }
.gsb-products-sort { display: flex; align-items: center; gap: 0.5rem; }
.gsb-sort-form { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.gsb-sort-label { color: var(--muted-foreground); font-size: clamp(0.875rem, 1.5vw, 0.9rem); line-height: 1.4; white-space: nowrap; }
.gsb-sort-select {
  padding: 0.5rem 0.75rem;
  min-height: 40px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  line-height: 1.4;
}
.gsb-products-grid { margin-top: 0; }
.gsb-product-card .gsb-card-link { text-decoration: none; color: inherit; display: block; }
.gsb-product-card .gsb-card-link:hover .name { color: var(--primary); }
.gsb-product-card .gsb-card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.gsb-product-card { position: relative; }
.gsb-products-empty { color: var(--muted-foreground); margin-bottom: 1rem; }

/* Accessories page — three departments (shoes, jackets, gloves), not helmet categories */
.gsb-accessories-page {
  padding: 1.5rem 0 2.5rem;
}
.gsb-acc-dept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gsb-acc-dept-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.gsb-acc-dept-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gsb-acc-dept-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.gsb-acc-dept-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.gsb-acc-dept-visual {
  height: 120px;
  background-size: cover;
  background-position: center;
}
.gsb-acc-dept-card--shoes .gsb-acc-dept-visual {
  background: linear-gradient(135deg, #2d2d2d 0%, #5c4033 45%, #8b6914 100%);
}
.gsb-acc-dept-card--jackets .gsb-acc-dept-visual {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
}
.gsb-acc-dept-card--gloves .gsb-acc-dept-visual {
  background: linear-gradient(135deg, #451a03 0%, #7c2d12 50%, #b91c1c 100%);
}
.gsb-acc-dept-body {
  padding: 1rem 1.1rem 1.15rem;
  text-align: left;
}
.gsb-acc-dept-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: var(--foreground);
}
.gsb-acc-dept-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.45;
  margin: 0 0 0.75rem;
}
.gsb-acc-dept-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.gsb-acc-dept-link:hover .gsb-acc-dept-cta {
  text-decoration: underline;
}
.gsb-acc-dept-arrow {
  transition: transform 0.2s ease;
}
.gsb-acc-dept-link:hover .gsb-acc-dept-arrow {
  transform: translateX(3px);
}

/* About us page */
.gsb-about { padding: 1.5rem 0 3rem; max-width: 720px; margin: 0 auto; }
.gsb-about-content { text-align: left; }
.gsb-about-lead { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.gsb-about-content p { margin-bottom: 1rem; line-height: 1.6; }
.gsb-about-h2 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.gsb-about-list { margin: 0 0 1rem 1.25rem; padding: 0; }
.gsb-about-list li { margin-bottom: 0.5rem; line-height: 1.5; }

/* Sizing Guide page */
.gsb-sizing { padding: 1.5rem 0 3rem; max-width: 720px; margin: 0 auto; }
.gsb-sizing-content { text-align: left; }
.gsb-sizing-lead {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.gsb-sizing-instructions {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.gsb-sizing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.gsb-sizing-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  color: var(--foreground);
  font-size: 0.9375rem;
}
.gsb-sizing-table thead {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}
.gsb-sizing-table th {
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--foreground);
}
.gsb-sizing-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.gsb-sizing-table tbody tr:last-child { border-bottom: none; }
.gsb-sizing-table tbody tr:nth-child(even) { background: rgba(0, 0, 0, 0.02); }
.gsb-sizing-table td {
  padding: 0.75rem 1rem;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  .gsb-sizing-table th,
  .gsb-sizing-table td { padding: 0.6rem 0.75rem; font-size: 0.875rem; }
}

/* Product rating stars & color option */
.gsb-product-rating { display: inline-flex; align-items: center; gap: 1px; }
.gsb-star { color: var(--muted); font-size: 1em; }
.gsb-star.filled { color: #f59e0b; }
.gsb-rating-count { margin-left: 0.25rem; font-size: 0.875em; color: var(--muted-foreground); }
.gsb-color-option { cursor: pointer; margin: 0; }
.gsb-color-option input { position: absolute; opacity: 0; }
.gsb-color-swatch { display: inline-block; width: 2rem; height: 2rem; border-radius: 50%; vertical-align: middle; }
.gsb-color-option input:checked + .gsb-color-swatch { box-shadow: 0 0 0 2px var(--primary); }
.gsb-review-item .gsb-star.filled { color: #f59e0b; }

/* Testimonials carousel – Shopify-style light section */
.gsb-testimonials {
  background: #f9fafb;
  border-top: 1px solid var(--border);
}
.gsb-testimonials-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.gsb-testimonials-carousel .carousel-inner {
  overflow: visible;
}
.gsb-testimonials-carousel .carousel-item {
  min-height: 280px;
}
.gsb-testimonial-slide {
  text-align: center;
  padding: 2rem 1.5rem;
  animation: gsb-testimonial-fade 0.6s ease-out;
}
@keyframes gsb-testimonial-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.gsb-testimonial-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c20f16);
  color: var(--primary-foreground);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  animation: gsb-avatar-pop 0.5s ease-out 0.2s both;
}
@keyframes gsb-avatar-pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}
.gsb-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 1rem;
}
.gsb-testimonial-stars .gsb-star {
  font-size: 1.25rem;
  color: var(--muted);
}
.gsb-testimonial-stars .gsb-star.filled {
  color: #f59e0b;
  animation: gsb-star-in 0.4s ease-out backwards;
}
.gsb-testimonial-stars .gsb-star.filled:nth-child(1) { animation-delay: 0.1s; }
.gsb-testimonial-stars .gsb-star.filled:nth-child(2) { animation-delay: 0.15s; }
.gsb-testimonial-stars .gsb-star.filled:nth-child(3) { animation-delay: 0.2s; }
.gsb-testimonial-stars .gsb-star.filled:nth-child(4) { animation-delay: 0.25s; }
.gsb-testimonial-stars .gsb-star.filled:nth-child(5) { animation-delay: 0.3s; }
@keyframes gsb-star-in {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.gsb-testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--foreground);
  margin: 0 auto 1.25rem;
  max-width: 520px;
  font-style: italic;
}
.gsb-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}
.gsb-testimonial-author strong {
  color: var(--foreground);
}
.gsb-testimonial-product {
  font-size: 0.8125rem;
  color: var(--primary);
}
.gsb-testimonial-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  opacity: 0.9;
  top: 50%;
  transform: translateY(-50%);
}
.gsb-testimonial-control:hover {
  opacity: 1;
  background: var(--primary);
  border-color: var(--primary);
}
.gsb-testimonial-control .carousel-control-prev-icon,
.gsb-testimonial-control .carousel-control-next-icon {
  filter: none;
}
#testimonialsCarousel .carousel-indicators {
  margin-bottom: -0.5rem;
}
#testimonialsCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--muted);
  border: none;
  opacity: 0.6;
}
#testimonialsCarousel .carousel-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

/* Product detail page: gallery, color/size, actions */
.gsb-product-detail { padding: 1.5rem 0 3rem; overflow-x: hidden; }
.gsb-product-detail .row > [class*="col-"] { min-width: 0; }
.gsb-product-title { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; margin-bottom: 0.5rem; }
.gsb-product-rating { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.gsb-star { color: var(--border); font-size: 1.1rem; }
.gsb-star.filled { color: #f0c000; }
.gsb-rating-count { font-size: 0.875rem; color: var(--muted-foreground); margin-left: 0.25rem; }
.gsb-product-price { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.gsb-detail-option { }
.gsb-option-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--foreground); }
.gsb-color-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gsb-color-swatch-option { margin: 0; cursor: pointer; }
.gsb-color-swatch-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.gsb-swatch-circle {
  display: inline-block; width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border); box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gsb-color-swatch-option input:focus-visible + .gsb-swatch-circle { outline: 2px solid var(--primary); outline-offset: 2px; }
.gsb-color-swatch-option input:checked + .gsb-swatch-circle { border-color: var(--foreground); box-shadow: 0 0 0 1px var(--foreground); }
.gsb-size-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gsb-size-btn { margin: 0; cursor: pointer; }
.gsb-size-btn input { position: absolute; opacity: 0; width: 0; height: 0; }
.gsb-size-btn span {
  display: inline-block; min-width: 2.5rem; padding: 0.4rem 0.75rem; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.gsb-size-btn input:checked + span { border-color: var(--foreground); background: var(--secondary); }
.gsb-detail-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.gsb-btn-cart {
  padding: 0.75rem 1.5rem; font-weight: 600; border: 1px solid var(--border); background: var(--card); color: var(--foreground);
  border-radius: var(--radius); cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.gsb-btn-cart:hover { border-color: var(--foreground); background: var(--secondary); }
.gsb-btn-buy {
  padding: 0.75rem 1.5rem; font-weight: 600; background: var(--primary); color: var(--primary-foreground);
  border: none; border-radius: var(--radius); cursor: pointer; transition: background 0.2s;
}
.gsb-btn-buy:hover { background: #c20f16; }
.gsb-detail-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; background: var(--card); }
.gsb-detail-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.gsb-spec-list { margin: 0; padding-left: 1.25rem; color: var(--muted-foreground); font-size: 0.9375rem; }
.gsb-spec-list li { margin-bottom: 0.35rem; }
.gsb-accordion-btn { background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
.gsb-accordion-icon { font-size: 1.25rem; color: var(--muted-foreground); }
.gsb-detail-desc { margin: 0; padding-top: 0.5rem; color: var(--muted-foreground); font-size: 0.9375rem; line-height: 1.6; }
.collapse:not(.show) .gsb-detail-desc { padding-top: 0; }
.gsb-review-item { list-style: none; }
.gsb-detail-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}
.gsb-detail-compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.gsb-detail-compare-img-wrap {
  display: block;
  background: var(--secondary);
  padding: 0.6rem;
}
.gsb-detail-compare-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
}
.gsb-detail-compare-body {
  padding: 0.72rem 0.8rem 0.85rem;
}
.gsb-detail-compare-cat {
  font-size: 0.65rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.gsb-detail-compare-name {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
  display: block;
  min-height: 36px;
}
.gsb-detail-compare-name:hover {
  color: var(--primary);
}
.gsb-detail-compare-cert {
  color: var(--muted-foreground);
  font-size: 0.72rem;
  margin-top: 0.22rem;
}
.gsb-detail-compare-price {
  margin-top: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

/* Gallery: thumbnails + main + arrows + Amazon-style hover zoom (lg+) */
.gsb-product-gallery { display: flex; gap: 1rem; align-items: flex-start; }
.gsb-gallery-thumbs { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
.gsb-gallery-thumb {
  width: 56px; height: 56px; padding: 0; border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--card); cursor: pointer; overflow: hidden; transition: border-color 0.2s;
}
.gsb-gallery-thumb:hover { border-color: var(--muted-foreground); }
.gsb-gallery-thumb.active { border-color: var(--primary); }
.gsb-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsb-gallery-main-wrap { position: relative; flex: 1; min-width: 0; width: 100%; }
.gsb-gallery-zoom-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}
.gsb-gallery-zoom-row .gsb-gallery-main {
  flex: 1 1 0;
  min-width: 0;
}
.gsb-zoom-result {
  flex: 0 0 0;
  width: 0;
  max-width: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  border: none;
  background: var(--secondary);
  border-radius: var(--radius);
  align-self: stretch;
  transition: flex-basis 0.2s ease, max-width 0.2s ease, min-width 0.2s ease, opacity 0.15s ease, border-color 0.15s ease;
  pointer-events: none;
}
.gsb-gallery-zoom-row.gsb-zoom-active .gsb-zoom-result.gsb-zoom-result-visible {
  flex: 0 0 38%;
  max-width: 300px;
  min-width: 160px;
  opacity: 1;
  border: 1px solid var(--border);
}
.gsb-zoom-lens {
  position: absolute;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 3;
  display: none;
}
@media (max-width: 991.98px) {
  .gsb-gallery-zoom-row { display: block; }
  .gsb-zoom-result,
  .gsb-zoom-lens { display: none !important; }
}
.gsb-gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--card); color: var(--foreground); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1; transition: background 0.2s, border-color 0.2s;
}
.gsb-gallery-nav:hover { background: var(--secondary); border-color: var(--primary); }
.gsb-gallery-prev { left: 0.5rem; }
.gsb-gallery-next { right: 0.5rem; }
.gsb-gallery-main {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 1;
  max-height: min(80vh, 720px);
  min-height: 260px;
  background: var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
}
.gsb-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s ease;
  transform: scale(0.98);
}
.gsb-gallery-slide.active { opacity: 1; visibility: visible; z-index: 1; transform: scale(1); }
.gsb-gallery-slide .gsb-product-main-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
}
@media (max-width: 576px) {
  .gsb-product-gallery { flex-direction: column-reverse; }
  .gsb-gallery-thumbs { flex-direction: row; flex-wrap: wrap; }
  .gsb-gallery-main {
    min-height: min(65vw, 360px);
    max-height: min(72vh, 480px);
    aspect-ratio: 3 / 4;
  }
}

.gsb-gallery-main-clickable { cursor: pointer; }
.gsb-gallery-main-clickable:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.gsb-view-all-photos { text-decoration: underline; }

/* Details page: remove image zoom overlay layer */
.gsb-product-detail .gsb-zoom-result,
.gsb-product-detail .gsb-zoom-lens {
  display: none !important;
}
.gsb-product-detail .gsb-gallery-main {
  cursor: default !important;
}

.gsb-spin360-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
}
.gsb-spin360-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
}
.gsb-spin360-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--foreground);
}
.gsb-spin360-hint {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}
.gsb-spin360 {
  position: relative;
  touch-action: none;
  cursor: grab;
  user-select: none;
  background: #fafafa;
  aspect-ratio: 1;
  max-height: min(420px, 70vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsb-spin360:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.gsb-spin360--active {
  cursor: grabbing;
}
.gsb-spin360-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* Full-screen photo modal (all images + title + caption) */
.gsb-photo-gallery-dialog { max-width: min(1140px, 96vw); }
.gsb-photo-modal-lead { max-height: 4.5rem; overflow: auto; }
.gsb-photo-modal-figure { margin: 0; }
.gsb-photo-modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(50vh, 420px);
  max-height: min(72vh, 640px);
  padding: 1rem 1rem 0;
  background: var(--secondary);
}
.gsb-photo-modal-img {
  max-width: 100%;
  max-height: min(68vh, 600px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.gsb-photo-modal-figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}
.gsb-photo-modal-img-title { font-size: 1rem; font-weight: 600; }
.gsb-photo-modal-img-sub { font-size: 0.8125rem; color: var(--muted-foreground); }
.gsb-photo-modal-img-caption { font-size: 0.875rem; color: var(--muted-foreground); }
.gsb-photo-carousel-btn { width: 3rem; opacity: 0.9; }

/* Product detail reels */
.gsb-product-videos { border-top: 1px solid var(--border); padding-top: 1rem; }
.gsb-product-videos .h6 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.gsb-video-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
}
.gsb-video-item {
  width: 100%;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  background: var(--card);
}
.gsb-video-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 0;
  object-fit: cover;
  background: #000;
  display: block;
}

/* Home reels section (match theme style) */
.gsb-home-reels { background: var(--background); }
.gsb-home-reels-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gsb-home-reels-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
}
.gsb-home-reels-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.25rem 0 0;
  font-weight: 800;
}
.gsb-home-reels-view-all {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.gsb-home-reels-view-all:hover { color: var(--primary); }
.gsb-home-reels-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
}
.gsb-home-reel-card {
  border: 1px solid var(--border);
  background: var(--card);
  scroll-snap-align: start;
}
.gsb-home-reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}
.gsb-home-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gsb-home-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}
.gsb-home-reel-tag,
.gsb-home-reel-duration {
  position: absolute;
  top: 0.6rem;
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.35rem 0.45rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
}
.gsb-home-reel-tag { left: 0.6rem; }
.gsb-home-reel-duration { right: 0.6rem; }
.gsb-home-reel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  pointer-events: none;
}
.gsb-home-reel-info {
  padding: 0.7rem 0.75rem 0.9rem;
}
.gsb-home-reel-name {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 700;
}
.gsb-home-reel-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
.gsb-home-reel-meta-row {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
.gsb-home-reel-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
}
.gsb-home-reel-meta-item i {
  font-size: 0.82rem;
  color: var(--foreground);
}

/* Cart page – visible values and layout */
.gsb-cart-page { padding: 1.5rem 0 3rem; }
.gsb-cart-page-title { font-size: 1.75rem; font-weight: 800; color: var(--foreground); margin-bottom: 1.5rem; letter-spacing: -0.04em; }
.gsb-cart-alert { color: #0f5132; background: #d1e7dd; border-color: #badbcc; }
.gsb-cart-empty { padding: 2rem 0; text-align: center; }
.gsb-cart-empty-text { color: var(--muted-foreground); margin-bottom: 1rem; font-size: 1rem; }
.gsb-cart-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gsb-cart-table-wrap { overflow-x: auto; }
.gsb-cart-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--foreground);
}
.gsb-cart-table th,
.gsb-cart-table td {
  padding: 1rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.gsb-cart-table thead th {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  background: var(--glass);
}
.gsb-cart-table tbody tr:hover { background: rgba(0, 0, 0, 0.02); }
.gsb-cart-value { color: var(--foreground); font-size: 0.9375rem; }
.gsb-cart-line-total { font-weight: 600; font-family: 'JetBrains Mono', monospace; color: var(--foreground); }
.gsb-cart-product-cell { display: flex; align-items: center; gap: 1rem; }
.gsb-cart-product-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius); background: var(--secondary); flex-shrink: 0; }
.gsb-cart-product-name { color: var(--foreground); font-weight: 600; text-decoration: none; }
.gsb-cart-product-name:hover { color: var(--primary); text-decoration: underline; }
.gsb-cart-qty-form { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.gsb-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--background);
}
.gsb-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--secondary);
  color: var(--foreground);
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gsb-qty-btn:hover { background: var(--glass); }
.gsb-cart-qty-input { width: 70px; color: var(--foreground); background: var(--background); border: 1px solid var(--border); }
.gsb-cart-qty-input:focus { color: var(--foreground); background: var(--background); border-color: var(--primary); }
.gsb-qty-stepper .gsb-cart-qty-input,
.gsb-qty-stepper .gsb-qty-input {
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  margin: 0;
  box-shadow: none;
}
.gsb-cart-btn-update { font-size: 0.8125rem; padding: 0.35rem 0.75rem; color: var(--muted-foreground); border: 1px solid var(--border); background: transparent; border-radius: var(--radius); }
.gsb-cart-btn-update:hover { color: var(--foreground); background: var(--secondary); border-color: var(--muted-foreground); }
.gsb-cart-btn-remove { font-size: 0.8125rem; padding: 0.35rem 0.75rem; color: #f87171; border: 1px solid rgba(248,113,113,0.5); background: transparent; border-radius: var(--radius); }
.gsb-cart-btn-remove:hover { background: rgba(248,113,113,0.15); color: #fca5a5; }
.gsb-cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--glass);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gsb-cart-total-line { margin: 0; font-size: 1.125rem; color: var(--foreground); }
.gsb-cart-total-label { font-weight: 600; margin-right: 0.5rem; color: var(--foreground); }
.gsb-cart-total-value { font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 1.25rem; color: var(--primary); }
.gsb-cart-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.gsb-cart-btn-outline {
  color: var(--foreground);
  border: 2px solid var(--border);
  background: transparent;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}
.gsb-cart-btn-outline:hover { background: var(--secondary); color: var(--foreground); border-color: var(--muted-foreground); }
.gsb-cart-btn-checkout {
  color: var(--primary-foreground);
  background: var(--primary);
  border: none;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}
.gsb-cart-btn-checkout:hover { filter: brightness(1.1); color: var(--primary-foreground); }
.gsb-cart-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .gsb-cart-layout { grid-template-columns: 1fr min(360px, 38%); }
}
.gsb-cart-main-col { min-width: 0; }
.gsb-cart-footer-totals { text-align: left; flex: 1; }
.gsb-cart-total-muted { font-weight: 600; font-family: 'JetBrains Mono', monospace; color: var(--foreground); }
.gsb-cart-discount-line .gsb-cart-discount-value { color: #15803d; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.gsb-cart-grand-line { margin-top: 0.35rem; padding-top: 0.5rem; border-top: 1px dashed var(--border); }
.gsb-coupon-remove-wrap { margin-top: 0.75rem; text-align: center; }
.gsb-coupon-remove-wrap-checkout { margin: 0 0 0.75rem; text-align: center; }
.gsb-coupon-remove-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.gsb-coupon-remove-link:hover { color: var(--foreground); }

.gsb-coupon-panel {
  background: linear-gradient(145deg, #fff 0%, #fff8f8 55%, #ffecec 100%);
  border: 1px solid rgba(235, 20, 20, 0.2);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.08);
}
.gsb-checkout-summary-card .gsb-coupon-panel {
  margin-top: 0.75rem;
  padding: 1rem 1rem;
  background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
}
.gsb-coupon-panel-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.gsb-coupon-panel-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gsb-coupon-panel-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.15rem; letter-spacing: -0.03em; }
.gsb-coupon-panel-sub { font-size: 0.8125rem; color: var(--muted-foreground); margin: 0; line-height: 1.4; }
.gsb-coupon-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.gsb-coupon-card {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #1f1f1f 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.gsb-coupon-card-inner { padding: 1rem 1rem 0.85rem; }
.gsb-coupon-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.gsb-coupon-card-label { font-size: 0.8125rem; opacity: 0.88; margin: 0 0 0.5rem; line-height: 1.35; }
.gsb-coupon-card-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.gsb-coupon-code {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fde68a;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  border: 1px dashed rgba(253, 230, 138, 0.5);
}
.gsb-coupon-copy-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}
.gsb-coupon-copy-btn:hover { background: rgba(255, 255, 255, 0.2); }
.gsb-coupon-card-meta { font-size: 0.72rem; opacity: 0.75; margin: 0 0 0.65rem; }
.gsb-coupon-apply-btn {
  width: 100%;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #111;
  cursor: pointer;
  margin-top: 0.15rem;
}
.gsb-coupon-apply-btn:hover { filter: brightness(0.95); }
.gsb-coupon-manual-form { margin-top: 0.25rem; }
.gsb-coupon-manual-label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--foreground); }
.gsb-coupon-manual-row { display: flex; gap: 0.5rem; }
.gsb-coupon-manual-input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  background: var(--background);
  color: var(--foreground);
}
.gsb-coupon-manual-submit {
  padding: 0.55rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: var(--primary-foreground);
  cursor: pointer;
  white-space: nowrap;
}
.gsb-coupon-manual-submit:hover { filter: brightness(1.08); }
.gsb-checkout-discount-row { color: #15803d; font-weight: 600; }

.gsb-cart-btn-primary {
  color: var(--primary-foreground);
  background: var(--primary);
  border: none;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}
.gsb-cart-btn-primary:hover { filter: brightness(1.1); color: var(--primary-foreground); }
@media (max-width: 767px) {
  .gsb-cart-table thead { display: none; }
  .gsb-cart-table tr { display: block; border-bottom: 1px solid var(--border); padding: 1rem 0; }
  .gsb-cart-table td { display: block; padding: 0.35rem 0; border: none; }
  .gsb-cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    display: inline-block;
    min-width: 5rem;
    margin-right: 0.5rem;
  }
  .gsb-cart-td-product::before { content: ''; display: none; }
  .gsb-cart-product-cell { margin-bottom: 0.5rem; }
  .gsb-cart-qty-form { width: 100%; }
  .gsb-cart-td-qty .gsb-qty-stepper { width: 100%; max-width: 180px; }
  .gsb-cart-td-qty .gsb-cart-qty-input { width: 100%; min-width: 0; }
  .gsb-cart-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .gsb-cart-actions { justify-content: center; }
}

/* Blog + Track Order refresh */
.gsb-blog-page,
.gsb-track-page {
  max-width: 980px;
  margin: 0 auto;
}
.gsb-blog-hero,
.gsb-track-hero {
  background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
  border: 1px solid #f4d9d9;
  border-radius: 14px;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.25rem;
}
.gsb-blog-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b91c1c;
  margin-bottom: 0.4rem;
}
.gsb-blog-card,
.gsb-track-form,
.gsb-track-result {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.gsb-blog-card-body {
  padding: 1.2rem 1.2rem;
}
.gsb-blog-card-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.35rem;
}
.gsb-blog-link {
  color: #111827;
  text-decoration: none;
}
.gsb-blog-link:hover {
  color: var(--primary);
}
.gsb-blog-read {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.gsb-blog-read:hover {
  text-decoration: underline;
}
.gsb-blog-details {
  max-width: 820px;
  margin: 0 auto;
}
.gsb-blog-back-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
}
.gsb-blog-back-link:hover {
  color: var(--primary);
}
.gsb-blog-details-head {
  margin-bottom: 1rem;
}
.gsb-blog-summary {
  font-size: 1.05rem;
  color: #374151;
  border-left: 3px solid #f0b6b6;
  padding-left: 0.8rem;
  margin-bottom: 1rem;
}
.gsb-blog-content {
  line-height: 1.75;
  color: #1f2937;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.gsb-track-form .card-body,
.gsb-track-result .card-body {
  padding: 1.15rem 1.1rem;
}
.gsb-track-btn {
  background: #111827;
  color: #fff;
  border: none;
  font-weight: 600;
}
.gsb-track-btn:hover {
  background: #000;
  color: #fff;
}
.gsb-track-block {
  min-width: 260px;
}
.gsb-track-row {
  margin-bottom: 0.35rem;
  color: #111827;
}
.gsb-track-status {
  margin-left: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-weight: 700;
}
.gsb-track-items {
  padding-left: 1rem;
}

/* Simplified top header */
.gsb-navbar .gsb-nav-links {
  gap: 0.15rem;
}
.gsb-navbar .gsb-nav-links > a,
.gsb-nav-dropdown-trigger {
  font-weight: 600;
}
.gsb-navbar .gsb-nav-links .gsb-search-form {
  margin-left: 0.25rem;
}

/* Floating chat/whatsapp widget */
.gsb-contact-widget {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gsb-contact-btn {
  border: none;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.gsb-contact-whatsapp { background: #22c55e; }
.gsb-contact-livechat { background: #2563eb; }
.gsb-contact-chatbot { background: #111827; }
.gsb-contact-btn:hover { color: #fff; filter: brightness(1.05); }
.gsb-chat-toast {
  position: fixed;
  right: 14px;
  bottom: 140px;
  z-index: 1250;
  max-width: 320px;
  color: #fff;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.gsb-chat-toast-success { background: #16a34a; }
.gsb-chat-toast-error { background: #dc2626; }

.gsb-policy-page {
  max-width: 900px;
  margin: 0 auto;
}
.gsb-policy-content {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  color: #1f2937;
  line-height: 1.7;
  font-size: 0.98rem;
}
.gsb-policy-content p {
  margin-bottom: 0.85rem;
}
.gsb-policy-content p:last-child {
  margin-bottom: 0;
}
.gsb-policy-content h2,
.gsb-policy-content h3,
.gsb-policy-content h4 {
  margin-top: 1.35rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #111827;
}
.gsb-policy-content h2:first-child,
.gsb-policy-content h3:first-child,
.gsb-policy-content h4:first-child {
  margin-top: 0;
}
.gsb-policy-content h2 {
  font-size: 1.25rem;
}
.gsb-policy-content h3 {
  font-size: 1.1rem;
}
.gsb-policy-content ul,
.gsb-policy-content ol {
  margin: 0.5rem 0 1rem 1.25rem;
  padding-left: 0.5rem;
}
.gsb-policy-content li {
  margin-bottom: 0.35rem;
}
.gsb-policy-content a {
  color: #2563eb;
  text-decoration: underline;
}
.gsb-policy-content a:hover {
  color: #1d4ed8;
}
.gsb-policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
}
.gsb-policy-content th,
.gsb-policy-content td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.65rem;
  text-align: left;
}
.gsb-policy-content th {
  background: #f9fafb;
  font-weight: 600;
}
.gsb-policy-content blockquote {
  margin: 1rem 0;
  padding: 0.65rem 1rem;
  border-left: 4px solid #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
}
.gsb-policy-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ------------------------------------------------------------------
   VORTEX reference-theme adaptation (GSB functionality preserved)
------------------------------------------------------------------- */

:root {
  --background: #fafafa;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --primary: #e53d2f;
  --primary-foreground: #ffffff;
  --secondary: #f0f0f0;
  --muted: #f4f4f4;
  --muted-foreground: #676767;
  --border: #e1e1e1;
  --radius: 0.35rem;
  --gradient-primary: linear-gradient(135deg, #e53d2f, #ff8a00);
  --gradient-dark: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  --shadow-glow: 0 0 30px rgba(229, 61, 47, 0.2);
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.09);
}

body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gsb-main {
  background: var(--background);
}

/* Header */
.gsb-header-wrap {
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.gsb-navbar .container {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.gsb-brand {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
}
.gsb-brand span,
.gsb-footer .gsb-brand span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gsb-nav-links > a,
.gsb-nav-dropdown-trigger {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}
.gsb-nav-cta,
.btn-primary,
.gsb-filter-apply,
.gsb-checkout-pay-btn {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.5rem;
}
.gsb-nav-cta {
  background: var(--primary);
}

/* Hero */
.gsb-hero {
  background: var(--gradient-dark);
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
}
.gsb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(#6b6b6b 1px, transparent 1px), linear-gradient(90deg, #6b6b6b 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.gsb-hero .container {
  position: relative;
}
.gsb-pill {
  border-radius: 0.5rem;
  border: 1px solid rgba(229, 61, 47, 0.25);
  background: rgba(229, 61, 47, 0.12);
  color: var(--primary);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
}
.gsb-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.04;
}
.gsb-hero .lead {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 40rem;
}
.gsb-hero .btn-primary {
  box-shadow: var(--shadow-glow);
}
.gsb-hero-image img {
  filter: drop-shadow(0 30px 70px rgba(229, 61, 47, 0.18));
}

/* Cards / grids */
.gsb-card,
.gsb-product-card,
.gsb-checkout-summary-card,
.gsb-cart-card,
.gsb-filter-sidebar {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}
.gsb-product-grid .gsb-card {
  overflow: hidden;
}
.gsb-product-grid .gsb-card-img {
  background: #f3f3f3;
}
.gsb-product-grid .name {
  font-family: 'Barlow', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}
.gsb-card-badge {
  border-radius: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Section headings */
.gsb-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary);
}
.gsb-section-title {
  letter-spacing: 0.05em;
}
.gsb-section-subtitle {
  color: var(--muted-foreground);
}

/* Footer */
.gsb-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.gsb-footer h4 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
}
.gsb-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.45rem;
  background: var(--secondary);
  color: var(--muted-foreground);
}
.gsb-social-icon:hover {
  background: rgba(229, 61, 47, 0.14);
  color: var(--primary);
}

/* Products page polish to match reference spacing */
.gsb-products-page {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.gsb-products-title {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}
.gsb-sort-select,
.gsb-filter-input {
  border-radius: 0.5rem;
}

/* Mobile touch-up */
@media (max-width: 767px) {
  .gsb-hero {
    min-height: auto;
    padding: 2.2rem 0 1rem;
  }
  .gsb-hero h1 {
    font-size: clamp(2rem, 9.3vw, 2.7rem);
  }
}

/* Theme toggle + dark theme */
.gsb-theme-toggle {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--secondary);
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.gsb-theme-toggle:hover { border-color: var(--primary); }
.gsb-theme-toggle-sun,
.gsb-theme-toggle-moon {
  position: absolute;
  transition: opacity 0.18s ease, transform 0.18s ease;
  line-height: 1;
}
.gsb-theme-toggle-sun { opacity: 1; transform: scale(1); }
.gsb-theme-toggle-moon { opacity: 0; transform: scale(0.8); }
body.gsb-dark .gsb-theme-toggle-sun { opacity: 0; transform: scale(0.8); }
body.gsb-dark .gsb-theme-toggle-moon { opacity: 1; transform: scale(1); }

body.gsb-dark {
  --background: #090909;
  --foreground: #f2f2f2;
  --card: #121212;
  --card-foreground: #f2f2f2;
  --primary: #ef4f3a;
  --primary-foreground: #ffffff;
  --secondary: #191919;
  --muted: #171717;
  --muted-foreground: #a0a0a0;
  --border: #262626;
  --glass: #111111;
  --glass-border: #2b2b2b;
  --primary-soft: rgba(239, 79, 58, 0.22);
  --gradient-dark: linear-gradient(180deg, #0b0b0b 0%, #131313 100%);
  --gradient-card: linear-gradient(180deg, #161616 0%, #101010 100%);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}
body.gsb-dark .gsb-header-wrap {
  background: rgba(11, 11, 11, 0.92);
}
body.gsb-dark .gsb-search-input,
body.gsb-dark .gsb-filter-input,
body.gsb-dark .form-control,
body.gsb-dark .form-select,
body.gsb-dark .gsb-sort-select {
  background: #111;
  color: #f2f2f2;
  border-color: #2b2b2b;
}
body.gsb-dark .gsb-search-overlay-panel,
body.gsb-dark .gsb-nav-dropdown,
body.gsb-dark .gsb-profile-dropdown {
  background: #111;
  border-color: #2b2b2b;
}
body.gsb-dark .gsb-search-overlay-backdrop,
body.gsb-dark .gsb-cart-drawer-backdrop {
  background: rgba(0, 0, 0, 0.65);
}
body.gsb-dark .gsb-footer {
  background: #0f0f0f;
}
body.gsb-dark .gsb-coupon-card {
  background: linear-gradient(135deg, #222 0%, #141414 40%, #0f0f0f 100%);
}

/* Lovable-like product interactions and sections */
.gsb-vortex-product-grid .gsb-vortex-card,
.gsb-vortex-product-grid .gsb-product-card {
  overflow: hidden;
}
.gsb-vortex-media {
  position: relative;
  background: color-mix(in srgb, var(--secondary) 88%, #000 12%);
}
.gsb-vortex-media .gsb-card-img {
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.35s ease;
}
.gsb-vortex-card:hover .gsb-card-img,
.gsb-product-card:hover .gsb-card-img {
  transform: scale(1.04);
}
.gsb-vortex-actions {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gsb-vortex-media form { flex: 1; margin: 0; }
.gsb-vortex-card:hover .gsb-vortex-actions,
.gsb-product-card:hover .gsb-vortex-actions {
  opacity: 1;
  transform: translateY(0);
}
.gsb-vortex-add-btn {
  width: 100%;
  padding: 0.62rem 0.8rem;
  border: none;
  border-radius: 0.55rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.gsb-vortex-add-btn:hover { filter: brightness(1.06); }
.gsb-vortex-view-btn {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 94%, #000 6%);
  color: var(--foreground);
  text-decoration: none;
}
.gsb-vortex-view-btn:hover { border-color: var(--primary); color: var(--primary); }

.gsb-vortex-features {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 90%, #000 10%);
}
.gsb-vortex-cta .btn-primary {
  min-width: 12rem;
}
body.gsb-dark .gsb-vortex-features {
  background: #0f0f0f;
}

/* ------------------------------------------------------------------
   Full-site modernization pass (all frontend pages)
------------------------------------------------------------------- */

/* Product detail */
.gsb-product-detail .gsb-product-title {
  font-size: clamp(1.8rem, 4.1vw, 3rem);
  margin-bottom: 0.5rem;
}
.gsb-product-gallery,
.gsb-detail-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-card);
}
.gsb-product-gallery {
  padding: 1rem;
}
.gsb-gallery-main {
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--secondary) 90%, #000 10%);
}
.gsb-gallery-main img {
  object-fit: contain;
}
.gsb-btn-cart,
.gsb-btn-buy {
  border-radius: 0.55rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.gsb-btn-cart {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 0;
}
.gsb-btn-buy {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.gsb-btn-cart:hover { filter: brightness(1.06); }
.gsb-btn-buy:hover { border-color: var(--primary); color: var(--primary); }

/* Cart + checkout modern polish */
.gsb-cart-page-title,
.gsb-checkout-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.gsb-cart-card,
.gsb-checkout-summary-card,
.gsb-checkout-section,
.gsb-track-form,
.gsb-track-result,
.gsb-blog-card,
.gsb-policy-page .gsb-policy-content,
.gsb-auth-card,
.gsb-order-card {
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}
.gsb-checkout-section {
  padding: 1rem;
  margin-bottom: 0.85rem;
}
.gsb-checkout-pay-btn {
  background: var(--gradient-primary);
  border: 0;
}
.gsb-checkout-pay-btn:hover { filter: brightness(1.08); }

/* Blog / policy / track pages */
.gsb-blog-hero,
.gsb-track-hero {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}
.gsb-blog-link:hover,
.gsb-blog-read:hover,
.gsb-track-btn:hover {
  color: var(--primary);
}
.gsb-track-btn {
  border-radius: 0.55rem;
  border: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gsb-policy-page .gsb-policy-content {
  padding: 1rem 1.15rem;
}

/* Auth and profile pages */
.gsb-auth-card h1,
.gsb-2fa-title {
  letter-spacing: 0.05em;
}
.btn-submit {
  width: 100%;
  border: 0;
  border-radius: 0.55rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
}
.btn-submit:hover { filter: brightness(1.06); }
.auth-back {
  color: var(--muted-foreground);
}
.auth-back:hover { color: var(--primary); }

/* My orders */
.gsb-order-card {
  padding: 0.95rem 1rem;
}
.gsb-order-number {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
}

/* Dark-mode specifics for remaining pages */
body.gsb-dark .gsb-gallery-main,
body.gsb-dark .gsb-track-form,
body.gsb-dark .gsb-track-result,
body.gsb-dark .gsb-blog-hero,
body.gsb-dark .gsb-blog-card,
body.gsb-dark .gsb-policy-page .gsb-policy-content,
body.gsb-dark .gsb-auth-card,
body.gsb-dark .gsb-order-card,
body.gsb-dark .gsb-detail-card {
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
}
body.gsb-dark .gsb-btn-buy {
  background: #161616;
}

/* ------------------------------------------------------------------
   Exact Lovable color lock (final override)
------------------------------------------------------------------- */
:root {
  --background: hsl(0 0% 98%) !important;
  --foreground: hsl(0 0% 10%) !important;
  --card: hsl(0 0% 100%) !important;
  --card-foreground: hsl(0 0% 10%) !important;
  --primary: hsl(4 85% 50%) !important;
  --primary-foreground: hsl(0 0% 100%) !important;
  --secondary: hsl(0 0% 92%) !important;
  --secondary-foreground: hsl(0 0% 20%) !important;
  --muted: hsl(0 0% 94%) !important;
  --muted-foreground: hsl(0 0% 40%) !important;
  --accent: hsl(30 100% 50%) !important;
  --accent-foreground: hsl(0 0% 100%) !important;
  --border: hsl(0 0% 88%) !important;
  --input: hsl(0 0% 88%) !important;
  --ring: hsl(4 85% 50%) !important;
  --gradient-primary: linear-gradient(135deg, hsl(4 85% 50%), hsl(30 100% 50%)) !important;
  --gradient-dark: linear-gradient(180deg, hsl(0 0% 96%) 0%, hsl(0 0% 92%) 100%) !important;
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(0 0% 96%) 100%) !important;
  --shadow-glow: 0 0 30px hsl(4 85% 50% / 0.2) !important;
  --shadow-card: 0 8px 32px hsl(0 0% 0% / 0.1) !important;
}
body.gsb-dark {
  --background: hsl(0 0% 4%) !important;
  --foreground: hsl(0 0% 95%) !important;
  --card: hsl(0 0% 7%) !important;
  --card-foreground: hsl(0 0% 95%) !important;
  --primary: hsl(4 85% 55%) !important;
  --primary-foreground: hsl(0 0% 100%) !important;
  --secondary: hsl(0 0% 12%) !important;
  --secondary-foreground: hsl(0 0% 90%) !important;
  --muted: hsl(0 0% 14%) !important;
  --muted-foreground: hsl(0 0% 55%) !important;
  --accent: hsl(30 100% 50%) !important;
  --accent-foreground: hsl(0 0% 100%) !important;
  --border: hsl(0 0% 15%) !important;
  --input: hsl(0 0% 15%) !important;
  --ring: hsl(4 85% 55%) !important;
  --gradient-primary: linear-gradient(135deg, hsl(4 85% 55%), hsl(30 100% 50%)) !important;
  --gradient-dark: linear-gradient(180deg, hsl(0 0% 4%) 0%, hsl(0 0% 8%) 100%) !important;
  --gradient-card: linear-gradient(180deg, hsl(0 0% 8%) 0%, hsl(0 0% 5%) 100%) !important;
  --shadow-glow: 0 0 30px hsl(4 85% 55% / 0.3) !important;
  --shadow-card: 0 8px 32px hsl(0 0% 0% / 0.5) !important;
}

body,
.gsb-main,
.gsb-products-page,
.gsb-cart-page,
.gsb-checkout,
.gsb-auth-page {
  background: var(--background) !important;
  color: var(--foreground) !important;
}
.gsb-header-wrap,
.gsb-footer,
.gsb-card,
.gsb-cart-card,
.gsb-checkout-summary-card,
.gsb-auth-card,
.gsb-order-card,
.gsb-policy-content,
.gsb-track-form,
.gsb-track-result,
.gsb-blog-card,
.gsb-blog-hero,
.gsb-track-hero {
  background: var(--gradient-card) !important;
  border-color: var(--border) !important;
}
.gsb-nav-cta,
.btn-primary,
.gsb-checkout-pay-btn,
.gsb-vortex-add-btn,
.gsb-cart-btn-checkout,
.gsb-footer-newsletter-btn {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border-color: var(--primary) !important;
}
.gsb-pill {
  background: hsl(4 85% 50% / 0.1) !important;
  border-color: hsl(4 85% 50% / 0.2) !important;
  color: var(--primary) !important;
}
.gsb-section-label,
.gsb-card-body .category,
.gsb-vortex-view-btn:hover,
.gsb-blog-read,
.gsb-blog-link:hover {
  color: var(--primary) !important;
}
.gsb-theme-toggle,
.gsb-vortex-view-btn,
.gsb-btn-buy,
.gsb-cart-btn-outline {
  background: var(--secondary) !important;
  color: var(--foreground) !important;
  border-color: var(--border) !important;
}
.gsb-store-banner {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

/* ------------------------------------------------------------------
   Homepage polish pass (balanced modern look)
------------------------------------------------------------------- */
.gsb-main > .container {
  max-width: 1140px;
}

.gsb-hero {
  min-height: 560px !important;
  padding: 4rem 0 3.5rem !important;
}
.gsb-hero-inner {
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 2.8rem !important;
  align-items: center !important;
}
.gsb-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem) !important;
  line-height: 0.94 !important;
  margin: 0.75rem 0 1.2rem;
  letter-spacing: 0.01em;
}
.gsb-hero .lead {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.gsb-hero .btn-primary {
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  border-radius: 10px !important;
}
.gsb-hero-image img {
  max-height: 420px !important;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
}
.gsb-hero-stats {
  margin-top: 2.2rem;
  gap: 2.4rem;
}

#products.py-5,
.gsb-category-banner,
.gsb-vortex-features.py-5,
.gsb-vortex-cta.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.gsb-section-label {
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
}
.gsb-section-title {
  font-size: clamp(2rem, 4.3vw, 3.25rem) !important;
  line-height: 0.98 !important;
  margin-bottom: 0.75rem;
}
.gsb-section-subtitle {
  font-size: 1rem !important;
}

.gsb-vortex-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
}
.gsb-vortex-card {
  border-radius: 14px !important;
  overflow: hidden;
  border: 1px solid var(--border) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.gsb-vortex-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.11) !important;
}
.gsb-vortex-product-grid .gsb-card-img {
  height: 220px !important;
  object-fit: contain !important;
  padding: 0.8rem;
}
.gsb-vortex-product-grid .gsb-card-body {
  padding: 1rem 1rem 1.1rem !important;
}
.gsb-vortex-product-grid .name {
  font-size: 0.92rem !important;
  line-height: 1.25;
}
.gsb-vortex-product-grid .price {
  font-size: 1.35rem !important;
  margin-top: 0.2rem;
}

.gsb-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}
.gsb-category-item {
  min-height: 188px;
  padding: 1.35rem 1rem !important;
  border-radius: 14px !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}
.gsb-cat-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}
.gsb-cat-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(4 85% 50% / 0.12);
  color: var(--primary);
}
.gsb-cat-icon i {
  font-size: 1.45rem;
  line-height: 1;
}
.gsb-category-item .cat-name {
  font-size: 1.35rem;
}
.gsb-category-item .cat-count {
  font-size: 0.8rem;
}

.gsb-tech-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}
.gsb-tech-card {
  min-height: 176px;
  padding: 1.1rem !important;
  border-radius: 14px !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.gsb-tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  background: hsl(4 85% 50% / 0.1);
  color: var(--primary);
  font-size: 1rem;
}
.gsb-tech-card h3 {
  font-size: 1.06rem !important;
  line-height: 1.2;
}
.gsb-tech-card p {
  font-size: 0.86rem !important;
  line-height: 1.5;
}

.gsb-vortex-cta {
  background: linear-gradient(180deg, hsl(0 0% 97%) 0%, hsl(0 0% 95%) 100%) !important;
  border-top: 1px solid var(--border);
}
.gsb-cta-newsletter-form {
  max-width: 520px;
  margin: 1.25rem auto 0;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}
.gsb-cta-email-input {
  flex: 1;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0 0.9rem;
  background: var(--card);
  color: var(--foreground);
}
.gsb-cta-newsletter-form .btn-primary {
  min-height: 46px;
  min-width: 144px;
  border-radius: 10px !important;
}

@media (max-width: 991px) {
  .gsb-hero {
    min-height: auto !important;
    padding: 2.5rem 0 !important;
  }
  .gsb-hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .gsb-hero .lead {
    margin-inline: auto;
  }
  .gsb-hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  .gsb-vortex-product-grid,
  .gsb-category-grid,
  .gsb-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 575px) {
  .gsb-vortex-product-grid,
  .gsb-category-grid,
  .gsb-tech-grid {
    grid-template-columns: 1fr !important;
  }
  .gsb-cta-newsletter-form {
    flex-direction: column;
  }
  .gsb-cta-email-input,
  .gsb-cta-newsletter-form .btn-primary {
    width: 100%;
  }
}

/* ------------------------------------------------------------------
   Lovable exact homepage visual lock (light theme)
------------------------------------------------------------------- */
body:not(.gsb-dark) {
  background: #f5f5f6 !important;
  color: #171717 !important;
}
body:not(.gsb-dark) .gsb-main > .container {
  max-width: 1120px;
}
body:not(.gsb-dark) .gsb-section-label {
  color: #ef2f1a !important;
  letter-spacing: 0.22em !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}
body:not(.gsb-dark) .gsb-section-title {
  color: #171717 !important;
  font-family: "Oswald", sans-serif !important;
  font-size: clamp(52px, 5.2vw, 72px) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
body:not(.gsb-dark) .gsb-section-title .accent,
body:not(.gsb-dark) .gsb-hero h1 .accent {
  color: #ef2f1a !important;
}
body:not(.gsb-dark) .gsb-section-subtitle,
body:not(.gsb-dark) .gsb-hero .lead {
  color: #5f5f5f !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body:not(.gsb-dark) .gsb-hero {
  background: #f5f5f6 !important;
  min-height: 520px !important;
  padding: 3.6rem 0 3.2rem !important;
}
body:not(.gsb-dark) .gsb-hero-inner {
  grid-template-columns: 1fr 1fr !important;
  gap: 2.6rem !important;
}
body:not(.gsb-dark) .gsb-pill {
  border-radius: 4px !important;
  background: #ffeceb !important;
  border: 1px solid #ffd4d0 !important;
  color: #ef2f1a !important;
  font-size: 10px !important;
}
body:not(.gsb-dark) .gsb-hero h1 {
  font-family: "Oswald", sans-serif !important;
  font-size: clamp(62px, 7vw, 84px) !important;
  line-height: 0.9 !important;
  color: #171717 !important;
  text-transform: uppercase;
}
body:not(.gsb-dark) .gsb-hero-image img {
  max-height: 430px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}
body:not(.gsb-dark) .gsb-hero .btn-primary {
  border-radius: 6px !important;
  background: linear-gradient(90deg, #ef2f1a, #ff7b00) !important;
  border: none !important;
  color: #fff !important;
  min-height: 42px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}

body:not(.gsb-dark) .gsb-vortex-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}
body:not(.gsb-dark) .gsb-vortex-card {
  border: 1px solid #e7e7e7 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}
body:not(.gsb-dark) .gsb-vortex-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px) !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .gsb-card-img {
  height: 190px !important;
  object-fit: contain !important;
  padding: 0.55rem !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .category {
  color: #737373 !important;
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .name {
  color: #1c1c1c !important;
  font-size: 12px !important;
  text-decoration: none !important;
  line-height: 1.35 !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .price {
  color: #111 !important;
  font-size: 34px !important;
  line-height: 1 !important;
  font-family: "Oswald", sans-serif !important;
}
body:not(.gsb-dark) #products .btn-primary {
  border-radius: 6px !important;
  background: #fff !important;
  color: #171717 !important;
  border: 1px solid #d8d8d8 !important;
  min-height: 40px !important;
  font-size: 11px !important;
  text-transform: uppercase;
}

body:not(.gsb-dark) .gsb-category-banner {
  background: #f5f5f6 !important;
}
body:not(.gsb-dark) .gsb-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}
body:not(.gsb-dark) .gsb-category-item {
  background: #fff !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 10px !important;
  min-height: 174px !important;
  justify-content: center !important;
}
body:not(.gsb-dark) .gsb-cat-img {
  width: 62px !important;
  height: 62px !important;
  margin-bottom: 0.9rem !important;
}
body:not(.gsb-dark) .gsb-category-item .cat-name {
  color: #181818 !important;
  font-family: "Oswald", sans-serif !important;
  font-size: 34px !important;
  text-transform: uppercase;
}
body:not(.gsb-dark) .gsb-category-item .cat-count {
  font-size: 11px !important;
  color: #7b7b7b !important;
}

body:not(.gsb-dark) .gsb-vortex-features {
  background: #d9d9db !important;
}
body:not(.gsb-dark) .gsb-tech-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.95rem !important;
}
body:not(.gsb-dark) .gsb-tech-card {
  background: #fff !important;
  border-radius: 10px !important;
  border: 1px solid #e7e7e7 !important;
  min-height: 154px !important;
  box-shadow: none !important;
}
body:not(.gsb-dark) .gsb-tech-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #ffeceb !important;
  color: #ef2f1a !important;
}
body:not(.gsb-dark) .gsb-tech-card h3 {
  font-family: "Oswald", sans-serif !important;
  font-size: 30px !important;
  text-transform: uppercase;
  color: #171717 !important;
}
body:not(.gsb-dark) .gsb-tech-card p {
  font-size: 12px !important;
  color: #5f5f5f !important;
}

body:not(.gsb-dark) .gsb-vortex-cta {
  background: #f7f7f8 !important;
  border-top: none !important;
}
body:not(.gsb-dark) .gsb-cta-newsletter-form {
  max-width: 520px !important;
  margin-top: 1rem !important;
}
body:not(.gsb-dark) .gsb-cta-email-input {
  height: 42px !important;
  border-radius: 6px !important;
  border: 1px solid #d8d8d8 !important;
  background: #fff !important;
  color: #171717 !important;
  font-size: 12px !important;
  min-width: 280px;
}
body:not(.gsb-dark) .gsb-cta-newsletter-form .btn-primary {
  height: 42px !important;
  min-width: 132px !important;
  border-radius: 6px !important;
  background: linear-gradient(90deg, #ef2f1a, #ff7b00) !important;
  color: #fff !important;
  font-size: 12px !important;
}

@media (max-width: 991px) {
  body:not(.gsb-dark) .gsb-vortex-product-grid,
  body:not(.gsb-dark) .gsb-category-grid,
  body:not(.gsb-dark) .gsb-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  body:not(.gsb-dark) .gsb-hero-inner {
    grid-template-columns: 1fr !important;
  }
}

/* ------------------------------------------------------------------
   Final reference lock: product cards + badges + heading scale
------------------------------------------------------------------- */
body:not(.gsb-dark) #products .gsb-section-title {
  font-size: clamp(44px, 4.8vw, 58px) !important;
  letter-spacing: 0.02em !important;
}
body:not(.gsb-dark) #products .gsb-section-subtitle {
  font-size: 13px !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .gsb-vortex-media {
  position: relative;
  border-bottom: 1px solid #ececec;
  background: #fff;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .gsb-card-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  right: auto;
  border-radius: 3px !important;
  padding: 2px 8px !important;
  background: #ef2f1a !important;
  color: #fff !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  z-index: 2;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .gsb-card-body {
  padding: 0.7rem 0.75rem 0.8rem !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .category {
  font-size: 9px !important;
  margin-bottom: 0.2rem !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .name {
  font-size: 11px !important;
  line-height: 1.4 !important;
  min-height: 42px;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .cert {
  font-size: 10px !important;
  color: #8a8a8a !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .price {
  font-size: 33px !important;
  margin-top: 0.1rem !important;
}
body:not(.gsb-dark) #products .btn-primary {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #dddddd !important;
  border-radius: 4px !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  font-family: "Barlow Condensed", sans-serif !important;
  min-height: 38px !important;
  padding-inline: 1.35rem !important;
}

/* ------------------------------------------------------------------
   Exact clean features + subtle animation (reference-like)
------------------------------------------------------------------- */
body:not(.gsb-dark) .gsb-vortex-features {
  background: #dcdcdf !important;
  padding-top: 4.2rem !important;
  padding-bottom: 4.2rem !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-section-title {
  font-size: clamp(58px, 6vw, 78px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.01em !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-section-subtitle {
  max-width: 540px;
  margin-inline: auto;
  color: #5c5c5c !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-grid {
  gap: 0.9rem !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-card {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  min-height: 136px !important;
  padding: 0.85rem !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-icon {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: #ffeceb !important;
  color: #e6402f !important;
  margin-bottom: 0.55rem;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-card h3 {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 30px !important;
  line-height: 0.95 !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 0.38rem !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-card p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #6a6a6a !important;
}

/* Remove heavy effects that make layout look off */
body:not(.gsb-dark) .gsb-vortex-card,
body:not(.gsb-dark) .gsb-category-item {
  box-shadow: none !important;
}

@keyframes gsbRiseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gsb-anim-rise {
  animation: gsbRiseIn 0.55s ease-out both;
}
.gsb-anim-stagger {
  opacity: 0;
  animation: gsbRiseIn 0.52s ease-out forwards;
  animation-delay: var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .gsb-anim-rise,
  .gsb-anim-stagger {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ------------------------------------------------------------------
   Attractive polish pass (balanced premium look)
------------------------------------------------------------------- */
body:not(.gsb-dark) .gsb-main > .container {
  max-width: 1140px !important;
}
body:not(.gsb-dark) .gsb-section-title {
  font-size: clamp(42px, 4.5vw, 60px) !important;
  letter-spacing: 0.01em !important;
}
body:not(.gsb-dark) .gsb-section-subtitle {
  color: #5f5f5f !important;
}

body:not(.gsb-dark) .gsb-vortex-product-grid {
  gap: 1.1rem !important;
}
body:not(.gsb-dark) .gsb-vortex-card {
  border-radius: 12px !important;
  border: 1px solid #e7e7e7 !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
body:not(.gsb-dark) .gsb-vortex-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12) !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .name {
  font-size: 12px !important;
}
body:not(.gsb-dark) .gsb-vortex-product-grid .price {
  font-size: 30px !important;
}

body:not(.gsb-dark) .gsb-category-item {
  border-radius: 12px !important;
  border: 1px solid #e6e6e6 !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
body:not(.gsb-dark) .gsb-category-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}
body:not(.gsb-dark) .gsb-category-item .cat-name {
  font-size: 28px !important;
}

body:not(.gsb-dark) .gsb-vortex-features {
  background: linear-gradient(180deg, #ededee 0%, #dfdfe1 100%) !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-card {
  border-radius: 10px !important;
  min-height: 152px !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}
body:not(.gsb-dark) .gsb-vortex-features .gsb-tech-card h3 {
  font-size: 22px !important;
}

body:not(.gsb-dark) .gsb-vortex-cta {
  background: #f2f2f3 !important;
}
body:not(.gsb-dark) .gsb-cta-newsletter-form .btn-primary,
body:not(.gsb-dark) .gsb-hero .btn-primary {
  background: linear-gradient(90deg, #ef2f1a, #ff7b00) !important;
  box-shadow: 0 8px 18px rgba(239, 47, 26, 0.25);
}
body:not(.gsb-dark) .gsb-cta-newsletter-form .btn-primary:hover,
body:not(.gsb-dark) .gsb-hero .btn-primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------------
   Ecommerce colorful refresh
------------------------------------------------------------------- */
body:not(.gsb-dark) {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 122, 0, 0.08), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(239, 47, 26, 0.07), transparent 24%),
    #f5f5f6 !important;
}

body:not(.gsb-dark) .gsb-navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e8e8 !important;
}
body:not(.gsb-dark) .gsb-nav-links > a:hover,
body:not(.gsb-dark) .gsb-nav-links > a.active {
  color: #ef2f1a !important;
}

body:not(.gsb-dark) .gsb-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.75)),
    linear-gradient(135deg, rgba(239, 47, 26, 0.08), rgba(255, 122, 0, 0.06)) !important;
  border-radius: 16px;
}
body:not(.gsb-dark) .gsb-pill {
  box-shadow: 0 4px 14px rgba(239, 47, 26, 0.15);
}

body:not(.gsb-dark) .gsb-card-badge {
  background: linear-gradient(90deg, #ef2f1a, #ff7b00) !important;
}

body:not(.gsb-dark) .gsb-vortex-product-grid .price {
  background: linear-gradient(90deg, #111111 0%, #2b2b2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

body:not(.gsb-dark) .gsb-category-banner {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.55)),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 0, 0.07), transparent 38%),
    #f4f4f5 !important;
  border-radius: 16px;
}
body:not(.gsb-dark) .gsb-category-item {
  position: relative;
  overflow: hidden;
}
body:not(.gsb-dark) .gsb-category-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #ef2f1a, #ff7b00);
  opacity: 0;
  transition: opacity 0.2s ease;
}
body:not(.gsb-dark) .gsb-category-item:hover::after {
  opacity: 1;
}

body:not(.gsb-dark) .gsb-vortex-features {
  background:
    linear-gradient(180deg, rgba(220, 220, 223, 0.96), rgba(214, 214, 218, 0.96)),
    radial-gradient(circle at 85% 20%, rgba(239, 47, 26, 0.09), transparent 26%) !important;
}
body:not(.gsb-dark) .gsb-tech-icon {
  box-shadow: 0 6px 14px rgba(230, 64, 47, 0.2);
}

body:not(.gsb-dark) .gsb-vortex-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 247, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.09), transparent 36%) !important;
  border-radius: 16px;
}
body:not(.gsb-dark) .gsb-cta-email-input:focus {
  border-color: #ef2f1a !important;
  box-shadow: 0 0 0 3px rgba(239, 47, 26, 0.14);
}

body:not(.gsb-dark) .gsb-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f7 100%) !important;
}

/* ------------------------------------------------------------------
   Final global lock: gsbhelmets.lovable.app theme
------------------------------------------------------------------- */
:root {
  --background: hsl(0 0% 98%) !important;
  --foreground: hsl(0 0% 10%) !important;
  --card: hsl(0 0% 100%) !important;
  --card-foreground: hsl(0 0% 10%) !important;
  --primary: hsl(4 85% 50%) !important;
  --primary-foreground: hsl(0 0% 100%) !important;
  --secondary: hsl(0 0% 92%) !important;
  --secondary-foreground: hsl(0 0% 20%) !important;
  --muted: hsl(0 0% 94%) !important;
  --muted-foreground: hsl(0 0% 40%) !important;
  --accent: hsl(30 100% 50%) !important;
  --accent-foreground: hsl(0 0% 100%) !important;
  --border: hsl(0 0% 88%) !important;
  --input: hsl(0 0% 88%) !important;
  --ring: hsl(4 85% 50%) !important;
}

body:not(.gsb-dark) {
  font-family: "Barlow", sans-serif !important;
  background: hsl(0 0% 98%) !important;
  color: hsl(0 0% 10%) !important;
}
body:not(.gsb-dark) .gsb-main > .container {
  max-width: 1120px !important;
}
body:not(.gsb-dark) .gsb-brand,
body:not(.gsb-dark) .gsb-section-title,
body:not(.gsb-dark) .gsb-tech-card h3,
body:not(.gsb-dark) .cat-name {
  font-family: "Oswald", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
body:not(.gsb-dark) .accent {
  color: hsl(30 100% 50%) !important;
}

/* Header */
body:not(.gsb-dark) .gsb-store-banner {
  background: hsl(4 85% 50%) !important;
  color: #fff !important;
  font-size: 10px !important;
  padding: 0.3rem 0 !important;
}
body:not(.gsb-dark) .gsb-navbar {
  background: #fff !important;
  border-bottom: 1px solid hsl(0 0% 88%) !important;
}
body:not(.gsb-dark) .gsb-navbar .container {
  min-height: 58px;
}
body:not(.gsb-dark) .gsb-nav-links > a,
body:not(.gsb-dark) .gsb-nav-dropdown-trigger {
  color: hsl(0 0% 20%) !important;
  font-size: 11px !important;
}
body:not(.gsb-dark) .gsb-nav-links > a:hover,
body:not(.gsb-dark) .gsb-nav-links > a.active,
body:not(.gsb-dark) .gsb-nav-dropdown-trigger:hover,
body:not(.gsb-dark) .gsb-nav-dropdown-trigger.active {
  color: hsl(4 85% 50%) !important;
}
body:not(.gsb-dark) .gsb-search-input {
  background: #fff !important;
  border: 1px solid hsl(0 0% 88%) !important;
  height: 32px !important;
  font-size: 11px !important;
}
body:not(.gsb-dark) .gsb-nav-cta {
  background: hsl(4 85% 50%) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-size: 11px !important;
}

/* Shared controls */
body:not(.gsb-dark) .btn-primary,
body:not(.gsb-dark) .gsb-btn-primary,
body:not(.gsb-dark) .gsb-checkout-pay-btn {
  background: linear-gradient(90deg, hsl(4 85% 50%), hsl(30 100% 50%)) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-family: "Barlow Condensed", sans-serif !important;
  text-transform: uppercase;
}
body:not(.gsb-dark) .btn-primary:hover,
body:not(.gsb-dark) .gsb-btn-primary:hover,
body:not(.gsb-dark) .gsb-checkout-pay-btn:hover {
  filter: brightness(1.05);
}

/* Cards and panels across pages */
body:not(.gsb-dark) .gsb-card,
body:not(.gsb-dark) .gsb-product-card,
body:not(.gsb-dark) .gsb-checkout-section,
body:not(.gsb-dark) .gsb-checkout-summary-card,
body:not(.gsb-dark) .gsb-cart-drawer-panel,
body:not(.gsb-dark) .gsb-auth-card {
  background: #fff !important;
  border: 1px solid hsl(0 0% 88%) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.06) !important;
}
body:not(.gsb-dark) .gsb-card-badge {
  background: hsl(4 85% 50%) !important;
  color: #fff !important;
  border-radius: 3px !important;
}
body:not(.gsb-dark) .gsb-card-body .category,
body:not(.gsb-dark) .gsb-section-label {
  color: hsl(4 85% 50%) !important;
}

/* Forms */
body:not(.gsb-dark) input,
body:not(.gsb-dark) select,
body:not(.gsb-dark) textarea,
body:not(.gsb-dark) .form-control,
body:not(.gsb-dark) .form-select {
  border-color: hsl(0 0% 86%) !important;
}
body:not(.gsb-dark) input:focus,
body:not(.gsb-dark) select:focus,
body:not(.gsb-dark) textarea:focus,
body:not(.gsb-dark) .form-control:focus,
body:not(.gsb-dark) .form-select:focus {
  border-color: hsl(4 85% 50%) !important;
  box-shadow: 0 0 0 2px hsl(4 85% 50% / 0.18) !important;
}

/* Footer */
body:not(.gsb-dark) .gsb-footer {
  background: hsl(0 0% 96%) !important;
  border-top: 1px solid hsl(0 0% 88%) !important;
}
body:not(.gsb-dark) .gsb-footer h4 {
  font-family: "Barlow Condensed", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
body:not(.gsb-dark) .gsb-footer-newsletter-btn {
  background: linear-gradient(90deg, hsl(4 85% 50%), hsl(30 100% 50%)) !important;
  color: #fff !important;
}

/* ------------------------------------------------------------------
   Modern UI reset (clean, consistent ecommerce look)
------------------------------------------------------------------- */
:root {
  --modern-bg: #f6f7fb;
  --modern-surface: #ffffff;
  --modern-surface-2: #f0f2f8;
  --modern-text: #171a21;
  --modern-muted: #697386;
  --modern-border: #e5e9f2;
  --modern-primary: #ff3b1f;
  --modern-accent: #ff8a00;
  --modern-shadow: 0 10px 30px rgba(16, 24, 40, 0.07);
}

body:not(.gsb-dark) {
  background: var(--modern-bg) !important;
  color: var(--modern-text) !important;
  font-family: "Barlow", sans-serif !important;
}
body:not(.gsb-dark) .gsb-main > .container {
  max-width: 1160px !important;
}

/* Header */
body:not(.gsb-dark) .gsb-store-banner {
  background: linear-gradient(90deg, var(--modern-primary), var(--modern-accent)) !important;
  color: #fff !important;
}
body:not(.gsb-dark) .gsb-navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid var(--modern-border) !important;
  backdrop-filter: blur(8px);
}
body:not(.gsb-dark) .gsb-brand {
  color: #121212 !important;
  font-family: "Oswald", sans-serif !important;
}
body:not(.gsb-dark) .gsb-brand span { color: var(--modern-primary) !important; }
body:not(.gsb-dark) .gsb-nav-links > a,
body:not(.gsb-dark) .gsb-nav-dropdown-trigger {
  color: #2a2f3a !important;
}
body:not(.gsb-dark) .gsb-nav-links > a:hover,
body:not(.gsb-dark) .gsb-nav-links > a.active {
  color: var(--modern-primary) !important;
}

/* Global card/panel language */
body:not(.gsb-dark) .gsb-card,
body:not(.gsb-dark) .gsb-product-card,
body:not(.gsb-dark) .gsb-detail-card,
body:not(.gsb-dark) .gsb-checkout-section,
body:not(.gsb-dark) .gsb-checkout-summary-card,
body:not(.gsb-dark) .gsb-auth-card,
body:not(.gsb-dark) .gsb-cart-drawer-panel,
body:not(.gsb-dark) .gsb-category-item,
body:not(.gsb-dark) .gsb-tech-card,
body:not(.gsb-dark) .gsb-value-item,
body:not(.gsb-dark) .gsb-metrics-grid article {
  background: var(--modern-surface) !important;
  border: 1px solid var(--modern-border) !important;
  border-radius: 14px !important;
  box-shadow: var(--modern-shadow) !important;
}

/* Sections */
body:not(.gsb-dark) .gsb-hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 138, 0, 0.12), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(255, 59, 31, 0.1), transparent 30%),
    #f7f8fc !important;
  border-radius: 18px;
}
body:not(.gsb-dark) .gsb-category-banner,
body:not(.gsb-dark) .gsb-vortex-cta {
  background: #f7f8fc !important;
  border-radius: 16px;
}
body:not(.gsb-dark) .gsb-vortex-features {
  background: linear-gradient(180deg, #eef1f7 0%, #e8ecf5 100%) !important;
}

/* Typography */
body:not(.gsb-dark) .gsb-section-label {
  color: var(--modern-primary) !important;
  letter-spacing: 0.18em !important;
  font-weight: 700 !important;
}
body:not(.gsb-dark) .gsb-section-title,
body:not(.gsb-dark) .gsb-product-title {
  color: var(--modern-text) !important;
  font-family: "Oswald", sans-serif !important;
}
body:not(.gsb-dark) .gsb-section-subtitle,
body:not(.gsb-dark) .gsb-card-body .cert,
body:not(.gsb-dark) .gsb-detail-desc,
body:not(.gsb-dark) .gsb-value-item p,
body:not(.gsb-dark) .gsb-metrics-grid p {
  color: var(--modern-muted) !important;
}

/* Buttons and badges */
body:not(.gsb-dark) .btn-primary,
body:not(.gsb-dark) .gsb-btn-primary,
body:not(.gsb-dark) .gsb-nav-cta,
body:not(.gsb-dark) .gsb-btn-cart,
body:not(.gsb-dark) .gsb-checkout-pay-btn,
body:not(.gsb-dark) .gsb-footer-newsletter-btn {
  background: linear-gradient(90deg, var(--modern-primary), var(--modern-accent)) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(255, 59, 31, 0.25);
}
body:not(.gsb-dark) .btn-primary:hover,
body:not(.gsb-dark) .gsb-btn-primary:hover,
body:not(.gsb-dark) .gsb-nav-cta:hover,
body:not(.gsb-dark) .gsb-btn-cart:hover,
body:not(.gsb-dark) .gsb-checkout-pay-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}
body:not(.gsb-dark) .gsb-btn-modern {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  font-weight: 700;
}
body:not(.gsb-dark) .gsb-btn-modern::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -38%;
  width: 28%;
  height: 250%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transition: transform 0.7s ease;
}
body:not(.gsb-dark) .gsb-btn-modern:hover::after {
  transform: translateX(350%) rotate(20deg);
}
body:not(.gsb-dark) .gsb-card-badge {
  background: linear-gradient(90deg, var(--modern-primary), var(--modern-accent)) !important;
  color: #fff !important;
}

/* Inputs */
body:not(.gsb-dark) .form-control,
body:not(.gsb-dark) .form-select,
body:not(.gsb-dark) input,
body:not(.gsb-dark) textarea,
body:not(.gsb-dark) select,
body:not(.gsb-dark) .gsb-search-input,
body:not(.gsb-dark) .gsb-footer-newsletter-input,
body:not(.gsb-dark) .gsb-cta-email-input {
  background: var(--modern-surface) !important;
  border: 1px solid var(--modern-border) !important;
  color: var(--modern-text) !important;
  border-radius: 10px !important;
}
body:not(.gsb-dark) .form-control:focus,
body:not(.gsb-dark) .form-select:focus,
body:not(.gsb-dark) input:focus,
body:not(.gsb-dark) textarea:focus,
body:not(.gsb-dark) select:focus,
body:not(.gsb-dark) .gsb-search-input:focus,
body:not(.gsb-dark) .gsb-footer-newsletter-input:focus,
body:not(.gsb-dark) .gsb-cta-email-input:focus {
  border-color: var(--modern-primary) !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 31, 0.16) !important;
}

/* Footer */
body:not(.gsb-dark) .gsb-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%) !important;
  border-top: 1px solid var(--modern-border) !important;
}

/* ------------------------------------------------------------------
   Creative modern motion layer
------------------------------------------------------------------- */
body:not(.gsb-dark) .gsb-main {
  position: relative;
  isolation: isolate;
}
body:not(.gsb-dark) .gsb-main::before,
body:not(.gsb-dark) .gsb-main::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
}
body:not(.gsb-dark) .gsb-main::before {
  top: 12%;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 59, 31, 0.5), transparent 65%);
}
body:not(.gsb-dark) .gsb-main::after {
  top: 44%;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.5), transparent 65%);
}

.gsb-reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gsb-reveal-up.gsb-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.gsb-interactive-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body:not(.gsb-dark) .gsb-interactive-card:hover {
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.14) !important;
}

body:not(.gsb-dark) .gsb-vortex-card,
body:not(.gsb-dark) .gsb-category-item,
body:not(.gsb-dark) .gsb-tech-card,
body:not(.gsb-dark) .gsb-value-item {
  overflow: hidden;
  position: relative;
}
body:not(.gsb-dark) .gsb-vortex-card::before,
body:not(.gsb-dark) .gsb-category-item::before,
body:not(.gsb-dark) .gsb-tech-card::before,
body:not(.gsb-dark) .gsb-value-item::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 60%;
  height: 220%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.35s ease;
  pointer-events: none;
}
body:not(.gsb-dark) .gsb-vortex-card:hover::before,
body:not(.gsb-dark) .gsb-category-item:hover::before,
body:not(.gsb-dark) .gsb-tech-card:hover::before,
body:not(.gsb-dark) .gsb-value-item:hover::before {
  opacity: 1;
  transform: translateX(230%) rotate(18deg);
}

body:not(.gsb-dark) .gsb-hero-image img {
  animation: gsbFloat 4.5s ease-in-out infinite;
}
@keyframes gsbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .gsb-reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body:not(.gsb-dark) .gsb-hero-image img {
    animation: none !important;
  }
  body:not(.gsb-dark) .gsb-vortex-card::before,
  body:not(.gsb-dark) .gsb-category-item::before,
  body:not(.gsb-dark) .gsb-tech-card::before,
  body:not(.gsb-dark) .gsb-value-item::before {
    display: none !important;
  }
}

/* ------------------------------------------------------------------
   Home UX upgrade: ecommerce conversion sections
------------------------------------------------------------------- */
.gsb-value-strip {
  padding: 0.9rem 0 0.4rem;
}
.gsb-home-carousel {
  padding: 0.8rem 0 0.25rem;
}
.gsb-quick-collections {
  padding: 0.55rem 0 0.2rem;
}
.gsb-quick-collections-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.gsb-quick-collections-head h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}
.gsb-quick-collections-head a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}
.gsb-quick-collections-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}
.gsb-qc-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--foreground);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.gsb-qc-item i {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(4 85% 50% / 0.12);
  color: var(--primary);
  flex-shrink: 0;
}
.gsb-qc-item span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}
.gsb-qc-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border-color: hsl(4 85% 50% / 0.3);
}

.gsb-media-spotlight {
  padding: 0.45rem 0 0.9rem;
}
.gsb-media-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.8rem;
}
.gsb-media-main,
.gsb-media-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}
.gsb-media-main {
  background:
    linear-gradient(140deg, hsl(4 85% 50% / 0.08), hsl(30 100% 50% / 0.06)),
    #fff;
}
.gsb-media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.55rem;
}
.gsb-media-main h3 {
  margin: 0 0 0.35rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
}
.gsb-media-main p {
  margin: 0 0 0.8rem;
  color: var(--muted-foreground);
}
.gsb-media-side h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.gsb-media-side p {
  margin: 0 0 0.55rem;
  color: var(--muted-foreground);
}
.gsb-media-side a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
.gsb-carousel-track {
  position: relative;
  min-height: 140px;
}
.gsb-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.gsb-carousel-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gsb-carousel-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: hsl(4 85% 50% / 0.12);
  margin-bottom: 0.45rem;
}
.gsb-carousel-slide h3 {
  margin: 0 0 0.3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.gsb-carousel-slide p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
  max-width: 720px;
}
.gsb-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.gsb-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #cfd4df;
}
.gsb-carousel-dot.active {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.gsb-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.gsb-value-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem;
}
.gsb-value-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: hsl(4 85% 50% / 0.12);
  flex-shrink: 0;
}
.gsb-value-icon i,
.gsb-tech-icon i,
.gsb-section-label i {
  font-size: 1rem;
  line-height: 1;
}
.gsb-value-icon i { font-size: 0.95rem; }
.gsb-value-item h3 {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.gsb-value-item p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted-foreground);
}

.gsb-deal-banner {
  padding: 0.5rem 0 2.2rem;
}
.gsb-deal-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  border: 1px solid hsl(4 85% 50% / 0.24);
  background: linear-gradient(120deg, hsl(4 85% 50% / 0.08), hsl(30 100% 50% / 0.1));
}
.gsb-deal-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
.gsb-deal-banner-inner h3 {
  margin: 0 0 0.25rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
}
.gsb-deal-banner-inner p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.gsb-trust-metrics {
  padding: 0.6rem 0 2rem;
}
.gsb-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.gsb-metrics-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0.8rem;
}

.gsb-value-item,
.gsb-tech-card,
.gsb-metrics-grid article,
.gsb-deal-banner-inner {
  will-change: transform, opacity;
}
.gsb-metrics-grid h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.gsb-metrics-grid p {
  margin: 0.2rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

@media (max-width: 991px) {
  .gsb-quick-collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gsb-media-grid {
    grid-template-columns: 1fr;
  }
  .gsb-carousel-track { min-height: 164px; }
  .gsb-value-grid,
  .gsb-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gsb-deal-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .gsb-quick-collections-grid {
    grid-template-columns: 1fr;
  }
  .gsb-value-grid,
  .gsb-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   Global mobile polish (touch, forms, tables, modals)
------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .gsb-nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .gsb-navbar .gsb-nav-links .gsb-nav-cta {
    margin-top: 0.25rem;
  }
  .modal-dialog {
    margin: 0.75rem;
    max-width: calc(100vw - 1.5rem);
  }
  .table-responsive {
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 575.98px) {
  .gsb-section-title {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    word-break: break-word;
  }
  .gsb-card-img {
    height: min(220px, 55vw);
  }
  .gsb-tech-grid {
    grid-template-columns: 1fr;
  }
}

