/** Shopify CDN: Minification failed

Line 2670:0 Unexpected "}"

**/
/* ============================================================
   GRIDKART — PREMIUM DESIGN SYSTEM
   "The Future of eCommerce"
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Colors */
  --gk-bg-primary:       #0a0a0f;
  --gk-bg-secondary:     #111118;
  --gk-bg-tertiary:      #16161e;
  --gk-surface:          rgba(255, 255, 255, 0.04);
  --gk-surface-hover:    rgba(255, 255, 255, 0.07);
  --gk-accent:           #f0a830;
  --gk-accent-light:     #f5c15a;
  --gk-accent-dim:       rgba(240, 168, 48, 0.35);
  --gk-accent-glow-sm:   0 0 20px rgba(240, 168, 48, 0.3);
  --gk-accent-glow-md:   0 0 40px rgba(240, 168, 48, 0.4);
  --gk-accent-glow-lg:   0 0 80px rgba(240, 168, 48, 0.2);
  --gk-text-primary:     #f5f5f5;
  --gk-text-secondary:   #9ca3af;
  --gk-text-tertiary:    #6b7280;
  --gk-text-inverse:     #0a0a0f;
  --gk-success:          #5aedc7;
  --gk-error:            #ff4d4d;
  --gk-warning:          #fbbf24;
  --gk-border:           rgba(255, 255, 255, 0.07);
  --gk-border-hover:     rgba(240, 168, 48, 0.4);

  /* Glass Formula */
  --gk-glass-bg:         rgba(255, 255, 255, 0.05);
  --gk-glass-blur:       blur(20px) saturate(180%);
  --gk-glass-border:     1px solid rgba(255, 255, 255, 0.08);
  --gk-glass-shadow:     0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 168, 48, 0.05);

  /* Border Radius */
  --gk-radius-sm:        12px;
  --gk-radius-md:        18px;
  --gk-radius-lg:        24px;
  --gk-radius-xl:        32px;
  --gk-radius-full:      9999px;

  /* Spacing Scale */
  --gk-space-1:          4px;
  --gk-space-2:          8px;
  --gk-space-3:          12px;
  --gk-space-4:          16px;
  --gk-space-5:          20px;
  --gk-space-6:          24px;
  --gk-space-8:          32px;
  --gk-space-10:         40px;
  --gk-space-12:         48px;
  --gk-space-16:         64px;
  --gk-space-20:         80px;
  --gk-space-24:         96px;
  --gk-space-32:         128px;

  /* Typography */
  --gk-font-display:     'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --gk-font-body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gk-font-mono:        'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes */
  --gk-text-xs:          12px;
  --gk-text-sm:          14px;
  --gk-text-base:        16px;
  --gk-text-lg:          18px;
  --gk-text-xl:          20px;
  --gk-text-2xl:         24px;
  --gk-text-3xl:         32px;
  --gk-text-4xl:         40px;
  --gk-text-5xl:         56px;
  --gk-text-6xl:         72px;
  --gk-text-7xl:         96px;

  /* Z-Index Scale */
  --gk-z-base:           0;
  --gk-z-card:           10;
  --gk-z-dropdown:       20;
  --gk-z-sticky:         30;
  --gk-z-modal:          40;
  --gk-z-drawer:         50;
  --gk-z-tooltip:        100;
  --gk-z-toast:          1000;
  --gk-z-cursor:         9999;

  /* Transitions */
  --gk-ease-out:         cubic-bezier(0.22, 1, 0.36, 1);
  --gk-ease-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --gk-ease-smooth:      cubic-bezier(0.4, 0, 0.2, 1);
  --gk-transition-fast:  150ms;
  --gk-transition-base:  250ms;
  --gk-transition-slow:  400ms;

  /* Layout */
  --gk-max-width:        1400px;
  --gk-container-pad:    clamp(16px, 5vw, 80px);
  --gk-nav-height:       72px;
  --gk-bar-height:       44px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--gk-bg-primary);
  color: var(--gk-text-primary);
  font-family: var(--gk-font-body);
  font-size: var(--gk-text-base);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

/* Restore cursor for touch devices + hide cursor elements */
@media (hover: none) {
  body { cursor: auto; }
  .gk-cursor, .gk-cursor-follower { display: none !important; }
}

/* If custom cursor is disabled via settings, restore pointer */
.no-custom-cursor body,
.no-custom-cursor * { cursor: auto !important; }

::selection {
  background: rgba(240, 168, 48, 0.3);
  color: var(--gk-text-primary);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, [type="button"], [type="submit"] {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol { list-style: none; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gk-font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gk-text-primary);
}

h1 { font-size: clamp(48px, 8vw, var(--gk-text-7xl)); }
h2 { font-size: clamp(32px, 5vw, var(--gk-text-5xl)); }
h3 { font-size: clamp(24px, 3vw, var(--gk-text-3xl)); }
h4 { font-size: var(--gk-text-2xl); }
h5 { font-size: var(--gk-text-xl); }
h6 { font-size: var(--gk-text-lg); }

.gk-display {
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-family: var(--gk-font-display);
}

.gk-text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f0a830 50%, #f5c15a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gk-text-accent { color: var(--gk-accent); }
.gk-text-secondary { color: var(--gk-text-secondary); }
.gk-text-sm { font-size: var(--gk-text-sm); }
.gk-text-lg { font-size: var(--gk-text-lg); }

/* ─── Layout Utilities ─── */
.gk-container {
  width: 100%;
  max-width: var(--gk-max-width);
  margin: 0 auto;
  padding: 0 var(--gk-container-pad);
}

.gk-section {
  padding: clamp(40px, 7vw, 100px) 0;
  border: none;
  outline: none;
  box-shadow: none;
}

.gk-section > * {
  box-shadow: none;
}

/* Ensure page content clears the fixed header */
#main-content > section:first-child {
  padding-top: calc(var(--gk-nav-height) + var(--gk-bar-height));
}

/* Eliminate visible lines between sections */
section + section,
.gk-section + .gk-section,
.gk-stats-bar-section + .gk-section,
.gk-section + .gk-stats-bar-section {
  margin-top: 0;
  border: none;
  outline: none;
}

main {
  border: none;
  outline: none;
  box-shadow: none;
}

main:focus,
main:focus-visible {
  outline: none;
}

.gk-section-sm {
  padding: clamp(24px, 4vw, 48px) 0;
}

.gk-grid {
  display: grid;
  gap: var(--gk-space-6);
}

.gk-flex {
  display: flex;
  align-items: center;
}

.gk-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── Glassmorphism ─── */
.gk-glass {
  background: var(--gk-glass-bg);
  backdrop-filter: var(--gk-glass-blur);
  -webkit-backdrop-filter: var(--gk-glass-blur);
  border: var(--gk-glass-border);
  box-shadow: var(--gk-glass-shadow);
}

.gk-glass-card {
  background: var(--gk-glass-bg);
  backdrop-filter: var(--gk-glass-blur);
  -webkit-backdrop-filter: var(--gk-glass-blur);
  border: var(--gk-glass-border);
  border-radius: var(--gk-radius-lg);
  box-shadow: var(--gk-glass-shadow);
  transition: all var(--gk-transition-base) var(--gk-ease-out);
}

.gk-glass-card:hover {
  background: var(--gk-surface-hover);
  border-color: rgba(240, 168, 48, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(240, 168, 48, 0.12);
  transform: translateY(-4px);
}

/* ─── Claymorphism ─── */
.gk-clay {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: var(--gk-radius-lg);
  box-shadow:
    6px 6px 20px rgba(0, 0, 0, 0.5),
    -2px -2px 12px rgba(255, 255, 255, 0.04),
    inset 1px 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── Buttons ─── */
.gk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gk-space-2);
  padding: 14px 32px;
  border-radius: var(--gk-radius-md);
  font-family: var(--gk-font-display);
  font-size: var(--gk-text-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--gk-transition-base) var(--gk-ease-spring);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
  touch-action: manipulation;
}

.gk-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--gk-transition-fast) ease;
}

.gk-btn:hover::before { opacity: 1; }

.gk-btn:active {
  transform: scale(0.97);
}

.gk-btn:focus-visible {
  outline: 2px solid var(--gk-accent);
  outline-offset: 3px;
}

/* Primary Button */
.gk-btn-primary {
  background: var(--gk-accent);
  color: var(--gk-text-inverse);
  box-shadow: 0 0 30px rgba(240, 168, 48, 0.4), 0 4px 16px rgba(240, 168, 48, 0.3);
}

.gk-btn-primary:hover {
  background: var(--gk-accent-light);
  box-shadow: 0 0 50px rgba(240, 168, 48, 0.6), 0 8px 24px rgba(240, 168, 48, 0.4);
  transform: translateY(-2px) scale(1.02);
  color: var(--gk-text-inverse);
}

/* Ghost Button */
.gk-btn-ghost {
  background: transparent;
  color: var(--gk-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gk-btn-ghost:hover {
  border-color: var(--gk-accent);
  color: var(--gk-accent);
  box-shadow: 0 0 20px rgba(240, 168, 48, 0.15);
  transform: translateY(-2px);
}

/* Icon Button */
.gk-btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--gk-radius-sm);
    background: transparent;
    border: none;
    color: var(--gk-text-secondary);
  }
  
  .gk-btn-icon:hover {
    background: var(--gk-surface-hover);
    color: var(--gk-text-primary);
  }

/* Small Button */
.gk-btn-sm {
  padding: 10px 20px;
  font-size: var(--gk-text-sm);
  min-height: 40px;
}

/* ─── Badge ─── */
.gk-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--gk-radius-full);
  font-size: var(--gk-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gk-badge-sale    { background: rgba(255, 77, 77, 0.2); color: #ff4d4d; border: 1px solid rgba(255,77,77,0.3); }
.gk-badge-new     { background: rgba(90, 237, 199, 0.15); color: var(--gk-success); border: 1px solid rgba(90,237,199,0.3); }
.gk-badge-hot     { background: rgba(240, 168, 48, 0.2); color: var(--gk-accent); border: 1px solid rgba(240,168,48,0.35); }
.gk-badge-limited { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }

/* ─── Cards ─── */
.gk-card {
  background: var(--gk-surface);
  border: var(--gk-glass-border);
  border-radius: var(--gk-radius-lg);
  overflow: hidden;
  transition: all var(--gk-transition-base) var(--gk-ease-out);
}

.gk-card:hover {
  border-color: rgba(240, 168, 48, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 168, 48, 0.1);
}

/* ─── Forms ─── */
.gk-input {
  width: 100%;
  padding: 14px 20px;
  background: var(--gk-surface);
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-md);
  color: var(--gk-text-primary);
  font-family: var(--gk-font-body);
  font-size: var(--gk-text-base);
  transition: all var(--gk-transition-fast) var(--gk-ease-out);
  min-height: 52px;
  -webkit-appearance: none;
}

.gk-input::placeholder {
  color: var(--gk-text-tertiary);
}

.gk-input:focus {
  outline: none;
  border-color: var(--gk-accent);
  box-shadow: 0 0 0 3px rgba(240, 168, 48, 0.15), 0 0 20px rgba(240, 168, 48, 0.1);
  background: rgba(240, 168, 48, 0.03);
}

.gk-label {
  display: block;
  font-size: var(--gk-text-sm);
  font-weight: 500;
  color: var(--gk-text-secondary);
  margin-bottom: var(--gk-space-2);
  letter-spacing: 0.02em;
}

/* ─── Dividers ─── */
.gk-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: var(--gk-space-12) 0;
}

.gk-divider-glow {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 168, 48, 0.4), transparent);
}

/* ─── Section Headers ─── */
.gk-section-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.gk-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--gk-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gk-accent);
  margin-bottom: var(--gk-space-4);
}

.gk-section-tag::before,
.gk-section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gk-accent);
  opacity: 0.6;
}

.gk-section-title {
  font-size: clamp(24px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--gk-space-3);
}

.gk-section-subtitle {
  font-size: var(--gk-text-lg);
  color: var(--gk-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Custom Cursor ─── */
.gk-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gk-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--gk-z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
  box-shadow: 0 0 12px rgba(240, 168, 48, 0.8);
}

.gk-cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 168, 48, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--gk-z-cursor) - 1);
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--gk-ease-out);
}

.gk-cursor.is-hovering {
  width: 20px;
  height: 20px;
  background: var(--gk-accent);
  opacity: 0.8;
}

.gk-cursor-follower.is-hovering {
  width: 56px;
  height: 56px;
  border-color: rgba(240, 168, 48, 0.6);
}

/* ─── Announcement Bar ─── */
.gk-announcement-bar {
  background: var(--gk-bg-primary);
  height: var(--gk-bar-height);
  overflow: hidden;
  position: relative;
  z-index: var(--gk-z-sticky);
}

.gk-announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--gk-space-8);
  font-size: 17px;
  font-weight: 600;
  color: var(--gk-text-secondary);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .gk-announcement-bar__inner {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gk-announcement-bar__inner {
    font-size: 12px;
  }
}

.gk-announcement-bar__ticker {
  display: flex;
  align-items: center;
  gap: var(--gk-space-16);
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  height: 100%;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gk-announcement-bar__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--gk-space-2);
}

.gk-announcement-bar__ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gk-accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(240,168,48,0.8);
}

  /* ─── Navbar ─── */
.gk-nav {
  position: fixed;
  top: var(--gk-bar-height);
  left: 0;
  right: 0;
  height: var(--gk-nav-height);
  z-index: var(--gk-z-sticky);
  transition: all var(--gk-transition-base) var(--gk-ease-out);
}

.gk-nav--scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: none;
  top: 0;
}

.gk-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gk-container-pad);
  max-width: var(--gk-max-width);
  margin: 0 auto;
}

.gk-nav__logo {
  font-family: var(--gk-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .gk-nav__logo {
    font-size: 22px;
  }
}

.gk-nav__logo-grid { color: var(--gk-text-primary); }
.gk-nav__logo-kart { color: var(--gk-accent); }

.gk-nav__links {
  display: flex;
  align-items: center;
  gap: var(--gk-space-1);
  list-style: none;
}

.gk-nav__link {
  position: relative;
  padding: 8px 16px;
  font-size: var(--gk-text-sm);
  font-weight: 500;
  color: var(--gk-text-secondary);
  border-radius: var(--gk-radius-sm);
  transition: color var(--gk-transition-fast) ease;
  cursor: pointer;
}

.gk-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gk-accent);
  border-radius: 2px;
  transition: transform var(--gk-transition-base) var(--gk-ease-spring);
}

.gk-nav__link:hover {
  color: var(--gk-text-primary);
}

.gk-nav__link:hover::after,
.gk-nav__link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.gk-nav__link.active {
  color: var(--gk-text-primary);
}

.gk-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--gk-space-2);
}

.gk-nav__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--gk-accent);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gk-text-inverse);
  box-shadow: 0 0 8px rgba(240,168,48,0.6);
}

/* Hamburger */
.gk-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.gk-hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gk-text-primary);
  border-radius: 2px;
  transition: all 0.35s var(--gk-ease-spring);
  transform-origin: center;
}

.gk-hamburger.is-open .gk-hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.gk-hamburger.is-open .gk-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gk-hamburger.is-open .gk-hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Menu ─── */
.gk-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: calc(var(--gk-z-drawer) - 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px var(--gk-container-pad) 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all var(--gk-transition-slow) var(--gk-ease-out);
}

.gk-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gk-mobile-menu__link {
  font-family: var(--gk-font-display);
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 700;
  color: var(--gk-text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--gk-transition-fast) ease;
  letter-spacing: -0.02em;
}

.gk-mobile-menu__link:hover {
  color: var(--gk-accent);
}

/* ─── Hero Banner ─── */
.gk-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--gk-nav-height) + var(--gk-bar-height));
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.gk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(240, 168, 48, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(240, 168, 48, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.gk-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.gk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 168, 48, 0.1);
  border: 1px solid rgba(240, 168, 48, 0.25);
  border-radius: var(--gk-radius-full);
  padding: 6px 16px;
  font-size: var(--gk-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gk-accent);
  margin-bottom: var(--gk-space-5);
}

.gk-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gk-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.gk-hero__headline {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--gk-space-4);
  text-align: center;
}

.gk-hero__headline .highlight {
  color: var(--gk-accent);
  text-shadow: 0 0 40px rgba(240,168,48,0.4);
}

  .gk-hero__sub {
    font-size: 14px !important;
    margin: 0 auto var(--gk-space-4) !important;
    line-height: 1.6;
    text-align: center;
  }

.gk-hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gk-space-3);
  margin-bottom: var(--gk-space-6);
  justify-content: center;
}

.gk-hero__visual-inline {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--gk-space-6);
}

.gk-hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gk-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.gk-hero__stat {
  padding: 0 var(--gk-space-5);
  text-align: center;
  flex: 1;
  min-width: 0;
}

.gk-hero__stat:first-child {
  padding-left: var(--gk-space-5);
}

.gk-hero__stat:last-child {
  padding-right: var(--gk-space-5);
}

.gk-hero__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.gk-hero__stat-value {
  font-family: var(--gk-font-display);
  font-size: var(--gk-text-3xl);
  font-weight: 700;
  color: var(--gk-text-primary);
  display: block;
  line-height: 1;
}

.gk-hero__stat-label {
  font-size: var(--gk-text-xs);
  color: var(--gk-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.gk-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gk-hero__model-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  position: relative;
  border-radius: var(--gk-radius-xl);
  overflow: hidden;
  background: var(--gk-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(240, 168, 48, 0.08),
    0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(240, 168, 48, 0.1);
}

.gk-hero__model-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(240,168,48,0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

model-viewer {
  width: 100%;
  height: 100%;
  --progress-bar-color: var(--gk-accent);
  --progress-mask: none;
}

.gk-hero__model-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--gk-text-tertiary);
  font-size: var(--gk-text-sm);
  text-align: center;
  padding: 32px;
}

/* Ambient glow orbs */
.gk-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.gk-orb--orange {
  background: rgba(240, 168, 48, 0.2);
  width: 400px;
  height: 400px;
}

/* ─── Hero Slider ─── */
.gk-hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gk-hero-slider .swiper-slide {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.gk-slider-slide {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.gk-slider-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

.swiper-slide-active .gk-slider-slide__bg {
  transform: scale(1.05);
}

.gk-slider-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.4) 60%, transparent 100%);
}

.gk-slider-slide__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gk-container-pad);
  max-width: var(--gk-max-width);
  margin: 0 auto;
  width: 100%;
}

.gk-slider-slide__tag {
  display: inline-block;
  background: rgba(240,168,48,0.15);
  border: 1px solid rgba(240,168,48,0.3);
  color: var(--gk-accent);
  font-size: var(--gk-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--gk-radius-full);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.2s var(--gk-ease-out);
}

.swiper-slide-active .gk-slider-slide__tag {
  opacity: 1;
  transform: translateY(0);
}

.gk-slider-slide__title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s 0.35s var(--gk-ease-out);
}

.swiper-slide-active .gk-slider-slide__title {
  opacity: 1;
  transform: translateY(0);
}

.gk-slider-slide__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gk-text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.5s var(--gk-ease-out);
}

.swiper-slide-active .gk-slider-slide__sub {
  opacity: 1;
  transform: translateY(0);
}

.gk-slider-slide__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.65s var(--gk-ease-out);
}

.swiper-slide-active .gk-slider-slide__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Navigation */
.gk-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: var(--gk-glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gk-text-primary);
  transition: all var(--gk-transition-fast) ease;
}

.gk-swiper-nav:hover {
  background: var(--gk-accent);
  border-color: var(--gk-accent);
  color: var(--gk-text-inverse);
  box-shadow: var(--gk-accent-glow-md);
}

.gk-swiper-prev { left: 24px; }
.gk-swiper-next { right: 24px; }

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--gk-accent) !important;
  width: 28px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 10px rgba(240,168,48,0.6) !important;
}

/* ─── Product Card ─── */
.gk-product-card {
  background: var(--gk-surface);
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--gk-transition-base) var(--gk-ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.gk-product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--gk-radius-lg);
  border: 1px solid rgba(240,168,48,0);
  transition: border-color var(--gk-transition-base) ease;
  pointer-events: none;
}

.gk-product-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(240,168,48,0.12);
}

.gk-product-card:hover::after {
  border-color: rgba(240, 168, 48, 0.3);
}

.gk-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gk-bg-tertiary);
}

.gk-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--gk-ease-out);
}

.gk-product-card:hover .gk-product-card__image {
  transform: scale(1.08);
}

.gk-product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.gk-product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--gk-transition-base) var(--gk-ease-out);
}

.gk-product-card:hover .gk-product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.gk-product-card__action-btn {
  width: 36px;
  height: 36px;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gk-text-secondary);
  cursor: pointer;
  transition: all var(--gk-transition-fast) ease;
}

.gk-product-card__action-btn:hover {
  background: var(--gk-accent);
  border-color: var(--gk-accent);
  color: var(--gk-text-inverse);
  box-shadow: 0 0 16px rgba(240,168,48,0.5);
}

.gk-product-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gk-product-card__vendor {
  font-size: var(--gk-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gk-text-tertiary);
  margin-bottom: 4px;
}

.gk-product-card__title {
  font-size: var(--gk-text-base);
  font-weight: 600;
  line-height: 1.4;
  color: var(--gk-text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gk-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.gk-product-card__stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.gk-product-card__review-count {
  font-size: var(--gk-text-xs);
  color: var(--gk-text-tertiary);
}

.gk-product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: auto;
}

.gk-product-card__price {
  font-family: var(--gk-font-display);
  font-size: var(--gk-text-xl);
  font-weight: 700;
  color: var(--gk-text-primary);
}

.gk-product-card__compare-price {
  font-size: var(--gk-text-sm);
  color: var(--gk-text-tertiary);
  text-decoration: line-through;
}

.gk-product-card__discount {
  font-size: var(--gk-text-xs);
  font-weight: 700;
  color: var(--gk-success);
  background: rgba(90,237,199,0.1);
  padding: 2px 8px;
  border-radius: var(--gk-radius-full);
}

.gk-product-card__add-btn {
  width: 100%;
  padding: 12px;
  background: rgba(240, 168, 48, 0.1);
  border: 1px solid rgba(240, 168, 48, 0.25);
  border-radius: var(--gk-radius-sm);
  color: var(--gk-accent);
  font-weight: 600;
  font-size: var(--gk-text-sm);
  transition: all var(--gk-transition-fast) var(--gk-ease-spring);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gk-product-card__add-btn:hover {
  background: var(--gk-accent);
  color: var(--gk-text-inverse);
  box-shadow: 0 0 24px rgba(240,168,48,0.4);
  transform: scale(1.02);
}

/* ─── Collections Grid ─── */
.gk-collection-card {
  position: relative;
  border-radius: var(--gk-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  flex-shrink: 0;
}

.gk-collection-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--gk-ease-out);
  filter: brightness(0.5) saturate(0.8);
}

.gk-collection-card:hover .gk-collection-card__bg {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1);
}

.gk-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 60%);
}

.gk-collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.gk-collection-card__title {
  font-size: var(--gk-text-2xl);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.gk-collection-card__count {
  font-size: var(--gk-text-sm);
  color: var(--gk-text-secondary);
}

.gk-collection-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(240,168,48,0.15);
  border: 1px solid rgba(240,168,48,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gk-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--gk-transition-base) var(--gk-ease-spring);
}

.gk-collection-card:hover .gk-collection-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Flash Sale ─── */
.gk-flash-sale {
  background: var(--gk-bg-primary);
  position: relative;
  overflow: hidden;
}

.gk-countdown {
  display: flex;
  align-items: center;
  gap: var(--gk-space-3);
}

.gk-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gk-countdown__value {
  background: var(--gk-surface);
  border: 1px solid rgba(255,77,77,0.3);
  border-radius: var(--gk-radius-sm);
  padding: 8px 16px;
  font-family: var(--gk-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--gk-text-primary);
  min-width: 80px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 20px rgba(255,77,77,0.1);
}

.gk-countdown__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gk-text-tertiary);
}

.gk-countdown__sep {
  font-size: 36px;
  font-weight: 700;
  color: var(--gk-error);
  line-height: 1;
  animation: blink 1s step-end infinite;
  padding-bottom: 20px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Stock Bar */
.gk-stock-bar {
  background: rgba(255,255,255,0.05);
  border-radius: var(--gk-radius-full);
  height: 6px;
  overflow: hidden;
}

.gk-stock-bar__fill {
  height: 100%;
  border-radius: var(--gk-radius-full);
  background: linear-gradient(90deg, var(--gk-error), #f0a830);
  box-shadow: 0 0 8px rgba(255,77,77,0.5);
  transition: width 1s var(--gk-ease-out);
}

/* ─── Testimonials ─── */
.gk-testimonial-card {
  background: var(--gk-surface);
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-lg);
  padding: var(--gk-space-8);
  flex-shrink: 0;
  width: 380px;
  transition: all var(--gk-transition-base) var(--gk-ease-out);
}

.gk-testimonial-card:hover {
  border-color: rgba(240,168,48,0.25);
  transform: translateY(-4px);
}

.gk-testimonial-card__quote {
  font-size: var(--gk-text-base);
  line-height: 1.75;
  color: var(--gk-text-secondary);
  margin-bottom: var(--gk-space-6);
}

.gk-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gk-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240,168,48,0.3);
}

.gk-testimonial-card__name {
  font-weight: 600;
  font-size: var(--gk-text-sm);
}

.gk-testimonial-card__role {
  font-size: var(--gk-text-xs);
  color: var(--gk-text-tertiary);
}

/* ─── Newsletter ─── */
.gk-newsletter {
  background: var(--gk-bg-primary);
  position: relative;
  overflow: hidden;
}

.gk-newsletter__form {
  display: flex;
  gap: var(--gk-space-3);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 540px) {
  .gk-newsletter__form {
    flex-direction: column;
    gap: var(--gk-space-2);
  }
}

/* ─── FAQ ─── */
.gk-faq__item {
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-md);
  overflow: hidden;
  transition: border-color var(--gk-transition-fast) ease;
  margin-bottom: var(--gk-space-3);
}

.gk-faq__item.is-open {
  border-color: rgba(240,168,48,0.3);
}

.gk-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gk-surface);
  color: var(--gk-text-primary);
  font-size: var(--gk-text-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: background var(--gk-transition-fast) ease;
}

.gk-faq__trigger:hover {
  background: var(--gk-surface-hover);
}

.gk-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(240,168,48,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gk-accent);
  transition: transform var(--gk-transition-base) var(--gk-ease-spring);
}

.gk-faq__item.is-open .gk-faq__icon {
  transform: rotate(45deg);
  background: var(--gk-accent);
  color: var(--gk-text-inverse);
}

.gk-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--gk-transition-slow) var(--gk-ease-out);
}

.gk-faq__item.is-open .gk-faq__content {
  max-height: 400px;
}

.gk-faq__answer {
  padding: 0 24px 20px;
  color: var(--gk-text-secondary);
  line-height: 1.7;
  font-size: var(--gk-text-base);
}

/* ─── Cart Drawer ─── */
.gk-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--gk-z-drawer) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--gk-transition-base) ease;
}

.gk-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.gk-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100%;
  background: var(--gk-bg-secondary);
  border-left: 1px solid rgba(255,255,255,0.06);
  z-index: var(--gk-z-drawer);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--gk-transition-slow) var(--gk-ease-out);
}

.gk-cart-drawer.is-open {
  transform: translateX(0);
  box-shadow: -40px 0 80px rgba(0,0,0,0.5);
}

.gk-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gk-space-4) var(--gk-space-5);
  border-bottom: 1px solid var(--gk-border);
}

.gk-cart-drawer__title {
  font-size: var(--gk-text-xl);
  font-weight: 700;
}

.gk-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--gk-space-4) var(--gk-space-5);
  scrollbar-width: thin;
  scrollbar-color: rgba(240,168,48,0.3) transparent;
}

.gk-cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}

.gk-cart-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}

.gk-cart-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(240,168,48,0.3);
  border-radius: 2px;
}

.gk-cart-drawer__footer {
  padding: var(--gk-space-4) var(--gk-space-5);
  border-top: 1px solid var(--gk-border);
  background: var(--gk-bg-tertiary);
}

/* Shipping Progress */
.gk-shipping-bar {
  background: var(--gk-surface);
  border-radius: var(--gk-radius-sm);
  padding: 12px 16px;
  margin-bottom: var(--gk-space-4);
  font-size: var(--gk-text-sm);
  text-align: center;
  color: var(--gk-text-secondary);
}

.gk-shipping-bar__track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.gk-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gk-accent), var(--gk-success));
  border-radius: 2px;
  transition: width 0.8s var(--gk-ease-out);
}

/* Cart Item */
.gk-cart-item {
  display: flex;
  gap: var(--gk-space-4);
  padding: var(--gk-space-4) 0;
  border-bottom: 1px solid var(--gk-border);
}

.gk-cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--gk-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gk-surface);
}

.gk-cart-item__info {
  flex: 1;
  min-width: 0;
}

.gk-cart-item__title {
  font-size: var(--gk-text-sm);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gk-cart-item__variant {
  font-size: var(--gk-text-xs);
  color: var(--gk-text-tertiary);
  margin-bottom: 8px;
}

.gk-cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-sm);
  overflow: hidden;
}

.gk-cart-item__qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  color: var(--gk-text-secondary);
  transition: all var(--gk-transition-fast) ease;
  font-size: 18px;
  font-weight: 300;
  border: none;
}

.gk-cart-item__qty-btn:hover {
  background: var(--gk-surface-hover);
  color: var(--gk-text-primary);
}

.gk-cart-item__qty-value {
  padding: 0 12px;
  font-size: var(--gk-text-sm);
  font-weight: 600;
  border-left: 1px solid var(--gk-border);
  border-right: 1px solid var(--gk-border);
  height: 32px;
  display: flex;
  align-items: center;
  min-width: 40px;
  justify-content: center;
}

.gk-cart-item__price {
  text-align: right;
  flex-shrink: 0;
}

/* ─── Search Overlay ─── */
.gk-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  z-index: var(--gk-z-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px var(--gk-container-pad) 40px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--gk-transition-base) ease;
}

.gk-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.gk-search-input-wrap {
  width: 100%;
  max-width: 720px;
  position: relative;
  margin-bottom: var(--gk-space-8);
}

.gk-search-input-wrap .gk-input {
  font-size: clamp(18px, 3vw, 28px);
  padding: 20px 60px 20px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--gk-radius-lg);
  height: auto;
  min-height: 0;
}

.gk-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gk-text-tertiary);
}

/* ─── Scroll Animations ─── */
.gk-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--gk-ease-out), transform 0.7s var(--gk-ease-out);
}

.gk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gk-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--gk-ease-out), transform 0.7s var(--gk-ease-out);
}

.gk-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gk-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--gk-ease-out), transform 0.7s var(--gk-ease-out);
}

.gk-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gk-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--gk-ease-out), transform 0.6s var(--gk-ease-out);
}

.gk-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.gk-stagger-1 { transition-delay: 0.05s; }
.gk-stagger-2 { transition-delay: 0.1s; }
.gk-stagger-3 { transition-delay: 0.15s; }
.gk-stagger-4 { transition-delay: 0.2s; }
.gk-stagger-5 { transition-delay: 0.25s; }
.gk-stagger-6 { transition-delay: 0.3s; }

/* ─── Footer ─── */
.gk-footer {
  background: var(--gk-bg-primary);
  border-top: none;
  padding-top: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.gk-footer::before {
  content: 'GRIDKART';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--gk-font-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 900;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.03em;
  line-height: 0.8;
}

.gk-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--gk-space-12);
  margin-bottom: var(--gk-space-16);
}

.gk-footer__logo {
  font-family: var(--gk-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--gk-space-4);
  display: inline-block;
}

.gk-footer__desc {
  color: var(--gk-text-secondary);
  font-size: var(--gk-text-sm);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: var(--gk-space-6);
}

.gk-footer__social {
  display: flex;
  gap: var(--gk-space-3);
}

.gk-footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--gk-surface);
  border: var(--gk-glass-border);
  border-radius: var(--gk-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gk-text-secondary);
  transition: all var(--gk-transition-fast) ease;
}

.gk-footer__social-link:hover {
  background: rgba(240,168,48,0.15);
  border-color: rgba(240,168,48,0.4);
  color: var(--gk-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(240,168,48,0.2);
}

.gk-footer__heading {
  font-size: var(--gk-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gk-text-primary);
  margin-bottom: var(--gk-space-5);
}

.gk-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--gk-space-3);
}

.gk-footer__link {
  font-size: var(--gk-text-sm);
  color: var(--gk-text-secondary);
  transition: color var(--gk-transition-fast) ease;
}

.gk-footer__link:hover {
  color: var(--gk-accent);
}

.gk-footer__bottom {
  border-top: 1px solid var(--gk-border);
  padding: var(--gk-space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--gk-text-xs);
  color: var(--gk-text-tertiary);
  flex-wrap: wrap;
  gap: var(--gk-space-4);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--gk-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(240, 168, 48, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gk-accent);
}

/* ─── Skeleton Loading ─── */
.gk-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border-radius: var(--gk-radius-sm);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── Toast Notification ─── */
.gk-toast-wrap {
  position: fixed;
  top: calc(var(--gk-nav-height) + var(--gk-bar-height) + 16px);
  right: var(--gk-space-6);
  z-index: var(--gk-z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--gk-space-3);
  pointer-events: none;
}

.gk-toast {
  background: var(--gk-bg-secondary);
  border: 1px solid rgba(90, 237, 199, 0.3);
  border-radius: var(--gk-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--gk-text-sm);
  font-weight: 500;
  min-width: 240px;
  max-width: 340px;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s var(--gk-ease-spring);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.gk-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.gk-toast--success {
  border-color: rgba(90, 237, 199, 0.35);
  box-shadow: 0 0 20px rgba(90,237,199,0.1);
}

.gk-toast--error {
  border-color: rgba(255, 77, 77, 0.35);
  box-shadow: 0 0 20px rgba(255,77,77,0.1);
}

.gk-toast__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gk-toast--success .gk-toast__icon {
  background: rgba(90,237,199,0.15);
  color: var(--gk-success);
}

.gk-toast--error .gk-toast__icon {
  background: rgba(255,77,77,0.15);
  color: var(--gk-error);
}

/* ─── Floating Mobile Cart ─── */
.gk-sticky-cart-mobile {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--gk-z-sticky);
  background: var(--gk-accent);
  color: var(--gk-text-inverse);
  border-radius: var(--gk-radius-full);
  padding: 12px 24px;
  font-weight: 700;
  font-size: var(--gk-text-sm);
  box-shadow: 0 8px 32px rgba(240,168,48,0.5);
  cursor: pointer;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  transition: transform var(--gk-transition-fast) var(--gk-ease-spring);
}

.gk-sticky-cart-mobile:hover {
  transform: translateX(-50%) scale(1.04);
}

/* ─── Variant Picker ─── */
.gk-variant-section {
  margin-bottom: var(--gk-space-5);
}

.gk-variant-label {
  font-size: var(--gk-text-sm);
  font-weight: 500;
  color: var(--gk-text-secondary);
  margin-bottom: var(--gk-space-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gk-variant-label__value {
  color: var(--gk-text-primary);
  font-weight: 600;
}

.gk-swatch-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gk-space-2);
}

.gk-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
  transition: all var(--gk-transition-fast) var(--gk-ease-spring);
  position: relative;
}

.gk-swatch.is-active {
  border-color: var(--gk-accent);
  box-shadow: 0 0 0 2px rgba(240,168,48,0.4), 0 0 12px rgba(240,168,48,0.3);
  transform: scale(1.15);
}

.gk-size-btn {
  padding: 8px 16px;
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-sm);
  font-size: var(--gk-text-sm);
  font-weight: 600;
  cursor: pointer;
  color: var(--gk-text-secondary);
  background: var(--gk-surface);
  transition: all var(--gk-transition-fast) ease;
  min-height: 44px;
}

.gk-size-btn:hover {
  border-color: rgba(240,168,48,0.4);
  color: var(--gk-text-primary);
}

.gk-size-btn.is-active {
  background: var(--gk-accent);
  border-color: var(--gk-accent);
  color: var(--gk-text-inverse);
  box-shadow: 0 0 16px rgba(240,168,48,0.4);
}

.gk-size-btn.is-unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ─── Comparison Table ─── */
.gk-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.gk-compare-table th {
  text-align: center;
  padding: 24px 20px;
  background: var(--gk-surface);
  border-bottom: 1px solid var(--gk-border);
  font-size: var(--gk-text-base);
  font-weight: 700;
}

.gk-compare-table th.featured {
  background: rgba(240,168,48,0.1);
  border-color: rgba(240,168,48,0.3);
  border-top: 2px solid var(--gk-accent);
}

.gk-compare-table td {
  text-align: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: var(--gk-text-sm);
  color: var(--gk-text-secondary);
}

.gk-compare-table td.featured {
  background: rgba(240,168,48,0.03);
}

.gk-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gk-text-primary);
}

.gk-compare-check {
  color: var(--gk-success);
}
.gk-compare-cross {
  color: var(--gk-text-tertiary);
}

/* ─── Trust Badges ─── */
.gk-trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gk-space-4);
  justify-content: center;
}

.gk-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gk-surface);
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-sm);
  font-size: var(--gk-text-xs);
  font-weight: 600;
  color: var(--gk-text-secondary);
}

.gk-trust-badge svg {
  color: var(--gk-accent);
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .gk-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gk-space-8);
  }
}

@media (max-width: 1024px) {
  .gk-nav__links {
    display: none;
  }
  .gk-hamburger {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    cursor: pointer;
  }
  .gk-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--gk-nav-height) + var(--gk-bar-height));
    padding-bottom: 32px;
    justify-items: center;
  }
  .gk-hero__grid {
    gap: 20px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .gk-hero__visual {
    max-width: 380px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
  }
  .gk-hero__model-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --gk-bar-height: 40px;
    --gk-nav-height: 64px;
  }
  .gk-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gk-footer__desc { max-width: 100%; }
  .gk-cart-drawer { width: 100vw; }
  .gk-testimonial-card {
    width: calc(100vw - 32px);
    max-width: 480px;
    flex-shrink: 0;
  }
  .gk-sticky-cart-mobile { display: flex; }

  /* Reduce inline margins on mobile */
  [style*="margin-top: 48px"],
  [style*="margin-top: 56px"],
  [style*="margin-top: 40px"] {
    margin-top: 24px !important;
  }
  [style*="margin-bottom: 48px"],
  [style*="margin-bottom: 40px"] {
    margin-bottom: 24px !important;
  }
  [style*="padding-bottom:48px"] {
    padding-bottom: 24px !important;
  }
  [style*="padding-top:calc"][style*="+ 48px"] {
    padding-top: calc(var(--gk-nav-height) + var(--gk-bar-height)) !important;
  }

  /* Hero mobile — tighter, premium feel */
  .gk-hero__grid {
    gap: 20px;
    max-width: 480px;
  }
  .gk-hero {
    padding-top: calc(var(--gk-nav-height) + var(--gk-bar-height));
    padding-bottom: 24px;
  }
  .gk-hero__headline {
    font-size: clamp(34px, 9vw, 52px);
  }
  .gk-hero__sub {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: var(--gk-space-6);
  }
  .gk-hero__ctas {
    margin-bottom: var(--gk-space-3);
  }
  .gk-hero__ctas .gk-btn {
    width: 100%;
    justify-content: center;
  }
  .gk-hero__eyebrow {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Hero stats — contained & symmetrical */
  .gk-hero__stats {
    gap: 0;
    flex-wrap: nowrap;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--gk-radius-md);
    padding: 12px 0;
    overflow: hidden;
  }
  .gk-hero__stat {
    padding: 0 var(--gk-space-4);
    text-align: center;
    min-width: 0;
  }
  .gk-hero__stat:first-child { padding-left: var(--gk-space-4); }
  .gk-hero__stat:last-child { padding-right: var(--gk-space-4); }
  .gk-hero__stat-value {
    font-size: var(--gk-text-xl);
  }
  .gk-hero__stat-label {
    font-size: 10px;
  }
  .gk-hero__stat-sep {
    height: 28px;
    background: rgba(255,255,255,0.06);
  }

  /* Hide hero slider nav arrows on mobile — use swipe + pagination */
  .gk-hero-slider .gk-swiper-nav {
    display: none !important;
  }

  /* Hero slider slide height on mobile */
  .gk-hero-slider .swiper-slide,
  .gk-slider-slide {
    min-height: 60vh;
  }

  /* Product cards — smaller on tiny screens */
  #featured-products-grid, #collection-products-grid, #main-search .gk-container > div[role=list] {
    gap: 12px !important;
  }
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Product page single column */
  #main-content > section .gk-container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Collection hero single column */
  .gk-glass-card[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }
  /* Cart page single column */
  .gk-container[style*="max-width:900px"] > form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Reduce heading margins on mobile */
  h1[style*="margin-bottom:48px"] {
    margin-bottom: 24px !important;
    font-size: 28px !important;
  }
  /* Testimonials rating overview */
  [style*="margin-bottom:56px"] {
    margin-bottom: 24px !important;
  }
  [style*="gap:40px"][style*="flex-wrap"] {
    gap: 20px !important;
  }
  /* Newsletter form margin */
  [style*="margin-top:40px"] {
    margin-top: 24px !important;
  }
  /* Reduce bottom margins */
  [style*="margin:0 auto 56px"],
  [style*="margin-bottom:56px"] {
    margin-bottom: 24px !important;
  }
  .gk-product-card {
    border-radius: var(--gk-radius-sm) !important;
  }
  .gk-product-card__body {
    padding: 10px !important;
  }
  .gk-product-card__title {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }
  .gk-product-card__price {
    font-size: 14px !important;
  }
  .gk-product-card__compare-price {
    font-size: 11px !important;
  }
  .gk-product-card__discount {
    padding: 1px 4px !important;
    font-size: 9px !important;
  }
  .gk-product-card__add-btn {
    padding: 10px;
    font-size: 12px;
  }

  /* Cart page padding adjustment */
  #main-cart .gk-glass-card {
    padding: 16px !important;
  }

  /* Flash sale products scroll */
  .gk-countdown {
    gap: var(--gk-space-1) !important;
  }
  .gk-countdown__value {
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    border-radius: var(--gk-radius-sm) !important;
  }
  .gk-countdown__label {
    font-size: 9px !important;
  }
  .gk-countdown__sep {
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }

  /* Footer extra compact */
  .gk-footer__heading {
    margin-top: var(--gk-space-4);
  }

  /* Ensure sticky cart doesn't overlap footer */
  .gk-footer {
    padding-bottom: 80px !important;
  }

  /* Section title smaller on tiny screens */
  .gk-section-title {
    font-size: clamp(22px, 7vw, 32px);
  }
  .gk-section-subtitle {
    font-size: 14px;
  }

  /* Hero visual — compact on tiny screens */
  .gk-hero__visual {
    max-width: 260px;
  }

  /* Trust badges — compact row */
  .gk-trust-grid {
    gap: 6px;
  }
  .gk-trust-badge {
    padding: 6px 10px;
    font-size: 10px;
  }

  /* Compact header on tiny screens */
  :root {
    --gk-nav-height: 56px;
    --gk-bar-height: 36px;
  }

  /* Hero stats — extra compact on tiny screens */
  .gk-hero__stats {
    padding: 8px 0;
  }
  .gk-hero__stat {
    padding: 0 var(--gk-space-3);
  }
  .gk-hero__stat:first-child { padding-left: var(--gk-space-3); }
  .gk-hero__stat:last-child { padding-right: var(--gk-space-3); }
  .gk-hero__stat-value {
    font-size: var(--gk-text-lg);
  }
  .gk-hero__stat-label {
    font-size: 9px;
  }
}

  /* ═══ Page content — tiny screens ═══ */
  #main-page.gk-page-section {
    padding-top: calc(var(--gk-nav-height) + var(--gk-bar-height) + 16px) !important;
    padding-bottom: 24px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  #main-page .gk-page-title {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  #main-page .gk-page-content {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
  .gk-page-content th,
  .gk-page-content td {
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
  .gk-page-content h1,
  .gk-page-content h2,
  .gk-page-content h3 {
    font-size: clamp(18px, 4.5vw, 24px) !important;
    margin-top: 24px !important;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gk-reveal, .gk-reveal-left, .gk-reveal-right, .gk-reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ─── Skip Link (Accessibility) ─── */
.gk-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gk-accent);
  color: var(--gk-text-inverse);
  padding: 10px 20px;
  border-radius: var(--gk-radius-sm);
  font-weight: 600;
  z-index: var(--gk-z-toast);
  transition: top var(--gk-transition-fast) ease;
}

.gk-skip-link:focus {
  top: 16px;
}

/* ─── Ambient Glow Background Orbs ─── */
.gk-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.gk-ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: orb-float 12s ease-in-out infinite;
}

.gk-ambient__orb-1 {
  width: 600px;
  height: 600px;
  background: #f0a830;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.gk-ambient__orb-2 {
  width: 400px;
  height: 400px;
  background: #d4942a;
  bottom: 20%;
  left: -150px;
  animation-delay: -4s;
  opacity: 0.06;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

  /* ─── Product Page Specific ─── */
.gk-product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--gk-space-3);
  align-items: start;
}

.gk-product-thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--gk-space-2);
}

.gk-product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--gk-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--gk-transition-fast) ease;
  background: var(--gk-surface);
}

.gk-product-thumb.is-active {
  border-color: var(--gk-accent);
  box-shadow: 0 0 12px rgba(240,168,48,0.3);
}

.gk-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gk-product-main-img {
  border-radius: var(--gk-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gk-surface);
  position: relative;
}

.gk-product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--gk-ease-out);
}

.gk-product-main-img:hover img {
  transform: scale(1.04);
}

/* ─── Delivery Estimator ─── */
.gk-delivery {
  background: var(--gk-surface);
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gk-delivery__icon {
  color: var(--gk-success);
  flex-shrink: 0;
}

.gk-delivery__info {
  flex: 1;
}

.gk-delivery__title {
  font-size: var(--gk-text-sm);
  font-weight: 600;
  margin-bottom: 2px;
}

.gk-delivery__date {
  font-size: var(--gk-text-xs);
  color: var(--gk-text-secondary);
}

/* ─── Quantity Stepper ─── */
.gk-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gk-border);
  border-radius: var(--gk-radius-md);
  overflow: hidden;
  background: var(--gk-surface);
}

.gk-qty-stepper__btn {
  width: 48px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gk-text-secondary);
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  transition: all var(--gk-transition-fast) ease;
}

.gk-qty-stepper__btn:hover {
  background: var(--gk-surface-hover);
  color: var(--gk-text-primary);
}

.gk-qty-stepper__value {
  padding: 0 20px;
  font-size: var(--gk-text-base);
  font-weight: 700;
  border-left: 1px solid var(--gk-border);
  border-right: 1px solid var(--gk-border);
  height: 52px;
  display: flex;
  align-items: center;
  min-width: 56px;
  justify-content: center;
}

/* ─── Horizontal Scroll Sections ─── */
.gk-hscroll {
  display: flex;
  gap: var(--gk-space-5);
  overflow-x: auto;
  padding-bottom: var(--gk-space-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gk-hscroll::-webkit-scrollbar { display: none; }

.gk-hscroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ─── Announcement Tag Shimmer ─── */
.gk-shimmer-text {
  background: linear-gradient(90deg, var(--gk-text-secondary), var(--gk-accent), var(--gk-text-secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s linear infinite;
}

@keyframes shimmer-text {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── Loading Overlay ─── */
.gk-page-loader {
  position: fixed;
  inset: 0;
  background: var(--gk-bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gk-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.gk-loader-logo {
  font-family: var(--gk-font-display);
  font-size: 32px;
  font-weight: 800;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50%       { opacity: 1; transform: scale(1); }
}
