/* ============================================================
   DESIGN TOKENS - REBRANDED FOR LUSHUS SWEETZ
   ============================================================ */
:root {
  /* Backgrounds - dark to make the neon colors pop */
  --bg: #0B0E0C;
  --bg-secondary: #101311;
  --surface: #141917;
  --surface-hover: #1C221F;
  --surface-active: #242B27;

  /* Warm contrast layer (Footer, reminders) */
  --surface-contrast: #1C0E12; /* Dark pink-tinted */
  --surface-contrast-hover: #2B151C;

  /* BRAND ACCENTS - From the Logo */
  --brand-green: #39FF14;       /* Neon Green */
  --brand-green-dark: #2ACC0D;
  --brand-green-muted: rgba(57, 255, 20, 0.12);
  --brand-pink: #FF28B3;        /* Neon Pink */
  --brand-pink-dark: #E0109A;
  --brand-pink-muted: rgba(255, 40, 179, 0.14);

  /* Primary / Action color (Green) */
  --primary: var(--brand-green);
  --primary-hover: var(--brand-green-dark);
  --primary-muted: var(--brand-green-muted);
  --text-on-primary: #0B1210;

  /* Secondary / Highlight color (Pink) */
  --accent-pink: var(--brand-pink);
  --accent-pink-hover: var(--brand-pink-dark);
  --accent-pink-muted: var(--brand-pink-muted);

  /* Text */
  --text: #FDFDFD;
  --text-secondary: #D3DBD7;
  --text-muted: #8A9690;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Status */
  --success: var(--brand-green);
  --success-muted: var(--brand-green-muted);
  --warning: var(--brand-pink);
  --danger: #FF4D6D;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);

  /* Shape - SQUARED corners */
  --radius: 4px;
  --radius-sm: 4px;
  --radius-pill: 4px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-secondary);
  min-height: 100vh;
  font-size: 0.9375rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; line-height: 1.2; color: var(--text); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }

/* ============================================================
   NAVIGATION - with centered search
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 14, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
  gap: 0.5rem;
}

.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  display: flex; align-items: center; gap: 0.375rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo span { color: var(--brand-pink); }

.nav-search {
  flex: 1;
  max-width: 32rem;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.nav-search:focus-within {
  border-color: var(--primary);
}
.nav-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  color: var(--text);
  font-size: 0.8125rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  min-width: 0;
}
.nav-search input::placeholder {
  color: var(--text-muted);
}
.nav-search-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.4rem 0.625rem 0.4rem 0.25rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.nav-search-btn:hover {
  color: var(--text);
}

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 0.125rem; 
}
.nav-links button {
  background: none; color: var(--text-muted);
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-links button:hover { background: var(--surface-hover); color: var(--text); }
.nav-links button.active { background: var(--primary-muted); color: var(--primary); }
.nav-right { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem;
  flex-shrink: 0;
}
.cart-btn {
  background: var(--primary); color: var(--text-on-primary);
  border-radius: 4px;
  padding: 0.5rem 0.875rem;
  font-weight: 600; font-size: 0.8rem;
  display: flex; align-items: center; gap: 0.375rem;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cart-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
.cart-badge {
  background: var(--brand-pink); color: var(--text-on-primary);
  border-radius: 2px; width: 1.125rem; height: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}

.hamburger { 
  display: none; 
  background: none; 
  padding: 0.25rem; 
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--surface-hover); }
.hamburger span { 
  display: block; 
  width: 1.25rem; 
  height: 0.125rem; 
  background: var(--text); 
  margin: 0.21875rem 0; 
  border-radius: 2px; 
  transition: 0.3s; 
}

.mobile-menu { 
  display: none; 
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.125rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu button {
  background: none; 
  text-align: left; 
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem; 
  color: var(--text-secondary); 
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
}
.mobile-menu button:last-child {
  border-bottom: none;
}
.mobile-menu button:hover {
  color: var(--text);
}

.mobile-search {
  margin-top: 0.5rem;
  padding: 0.25rem 0;
}
.mobile-search input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.mobile-search input:focus {
  border-color: var(--primary);
}
.mobile-search input::placeholder {
  color: var(--text-muted);
}

/* ============================================================
   PAGES
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   HOME PAGE - HERO centered
   ============================================================ */
.hero2 {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 1rem 0.75rem 2.5rem;
  min-height: 26.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.hero2-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero2-media picture {
  display: block;
  width: 100%; height: 100%;
}
.hero2-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.hero2-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    100deg,
    var(--bg) 0%,
    var(--bg) 34%,
    rgba(11, 14, 12, 0.88) 46%,
    rgba(11, 14, 12, 0.35) 62%,
    rgba(11, 14, 12, 0) 78%
  );
}
.hero2-content {
  position: relative;
  z-index: 3;
  max-width: 26.25rem;
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero2-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.625rem;
}
.hero2-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}
.hero2-content h1 em { color: var(--primary); font-style: italic; }
.hero2-content > p {
  color: var(--text-secondary); font-size: 0.92rem;
  max-width: 21.875rem;
  margin-bottom: 1rem;
}
.hero2-stars {
  color: var(--accent-pink); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.375rem;
}
.hero2-stat {
  font-weight: 600; color: var(--text); font-size: 0.85rem; margin-bottom: 0.75rem;
}
.hero2-checks { list-style: none; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.375rem; }
.hero2-checks li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
}
.hero2-checks li span.tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.125rem; height: 1.125rem; border-radius: 2px;
  background: var(--success-muted); color: var(--success);
  font-size: 0.6rem; flex-shrink: 0;
}
.hero-ctas { 
  display: flex; 
  gap: 0.75rem; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* ============================================================
   BUTTONS - SQUARED
   ============================================================ */
.btn-primary {
  background: var(--primary); color: var(--text-on-primary);
  padding: 0.75rem 1.5rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-strong);
  padding: 0.6875rem 1.375rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-muted); }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  padding: 2rem 1rem;
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 6.25rem;
  flex: 0 1 auto;
}
.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.trust-icon svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

/* ============================================================
   SECTIONS & CATEGORIES
   ============================================================ */
.section { 
  padding: 2rem 1rem; 
  max-width: 1120px; 
  margin: 0 auto; 
}
.section-title { 
  font-size: 1.6rem; 
  color: var(--text); 
  margin-bottom: 0.375rem; 
}
.section-sub { 
  color: var(--text-muted); 
  margin-bottom: 1.75rem; 
  font-size: 0.95rem;
}

.cat-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(8.75rem, 1fr)); 
  gap: 0.75rem; 
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  position: relative;
  overflow: hidden;
  background: var(--surface); border-radius: 4px;
  padding: 1.125rem 1rem;
  border: 1px solid var(--border);
  cursor: pointer; transition: all 0.25s ease;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--cat-accent, var(--primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.cat-card::after {
  content: '→';
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1rem; color: var(--cat-accent, var(--primary));
  opacity: 0; transform: translateX(-6px);
  transition: all 0.25s ease;
}
.cat-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover::after { opacity: 1; transform: translateX(0); }
.cat-card h3 { 
  font-family: 'Fredoka', sans-serif; 
  font-size: 0.9rem; 
  font-weight: 700; 
  color: var(--text); 
}
.cat-card p { 
  font-size: 0.7rem; 
  color: var(--text-muted); 
  margin-top: 2px; 
}

.cat-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 4px;
  overflow: hidden;
  background: color-mix(in srgb, var(--cat-accent, var(--primary)) 16%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--cat-accent, var(--primary)) 35%, transparent);
}
.cat-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cat-card.cat-red    { --cat-accent: var(--cat-red); }
.cat-card.cat-blue   { --cat-accent: var(--cat-blue); }
.cat-card.cat-purple { --cat-accent: var(--cat-purple); }
.cat-card.cat-orange { --cat-accent: var(--cat-orange); }
.cat-card.cat-brown  { --cat-accent: var(--cat-brown); }
.cat-card.cat-pink   { --cat-accent: var(--cat-pink); }
.cat-card.cat-teal   { --cat-accent: var(--cat-teal); }
.cat-card.cat-gold   { --cat-accent: var(--cat-gold); }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); 
  gap: 0.75rem; 
}

#featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.75rem;
  min-height: 6.25rem;
}

#featured-grid:empty::after {
  content: 'Loading featured products...';
  color: var(--text-muted);
  text-align: center;
  padding: 2.5rem 0;
  grid-column: 1 / -1;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  position: relative;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s ease; cursor: pointer;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }

.product-body {
  background: var(--surface);
  padding: 0.75rem 0.75rem 0;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat { 
  font-size: 0.65rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  margin-bottom: 0.125rem; 
  color: var(--primary); 
}
.product-name { 
  font-family: 'Fredoka', sans-serif; 
  font-size: 0.8rem; 
  font-weight: 700; 
  color: var(--text); 
  margin-bottom: 0.25rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc { 
  font-size: 0.7rem; 
  color: var(--text-muted); 
  line-height: 1.4; 
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 4px;
  background: var(--surface-active);
  position: relative;
  overflow: hidden;
  margin-bottom: 0.625rem;
}

.product-badge {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: var(--accent-pink); color: var(--text-on-primary);
  border-radius: 4px;
  padding: 0.1875rem 0.625rem;
  font-size: 0.6rem; font-weight: 700;
  z-index: 1;
}

.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }

/* ===== SALE PRICING ===== */
.product-price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sale-price {
  color: var(--accent-pink);
  font-weight: 800;
  font-size: 1rem;
}
.compare-at-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.75rem;
}
.regular-price {
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
}
.sale-badge {
  background: var(--accent-pink);
  color: var(--text-on-primary);
  padding: 0.0625rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-rating { font-size: 0.7rem; letter-spacing: 1px; color: var(--border-strong); }
.product-rating .star-filled { color: var(--accent-pink); }

.card-option-label { 
  font-size: 0.6rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.06em; 
  color: var(--text-muted); 
  margin-bottom: 0.25rem; 
}
.sl-row { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.sl-pill {
  background: none; border: none; padding: 0;
  color: var(--text-muted); font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s ease;
}
.sl-pill:hover { color: var(--text-secondary); }
.sl-pill.active { color: var(--text); font-weight: 800; }

.option-block { margin: 0.75rem 0; }
.option-label {
  display: block; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.option-block .sl-row { padding: 0; gap: 0.375rem; }
.option-block .sl-pill {
  border: 1px solid var(--border); background: var(--surface-hover);
  color: var(--text-secondary); border-radius: 4px;
  padding: 0.4375rem 0.875rem; font-size: 0.72rem; font-weight: 600;
}
.option-block .sl-pill:hover { border-color: var(--border-strong); color: var(--text); }
.option-block .sl-pill.active { background: var(--primary); color: var(--text-on-primary); border-color: var(--primary); }

.card-qty-row { display: flex; align-items: center; justify-content: space-between; margin: 0.625rem 0 0.75rem; }
.card-qty-ctrl { display: flex; align-items: center; gap: 0.5rem; }
.card-qty-ctrl button {
  width: 1.5rem; height: 1.5rem; border-radius: 4px;
  border: 1.5px solid var(--border-strong); background: var(--surface-hover);
  color: var(--text); font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.card-qty-ctrl button:hover { border-color: var(--primary); color: var(--primary); }
.card-qty-ctrl .qty-val { font-weight: 700; color: var(--text); min-width: 0.875rem; text-align: center; font-size: 0.8rem; }

.add-to-cart-bar {
  width: 100%;
  background: var(--primary);
  color: var(--text-on-primary);
  border: none;
  padding: 0.875rem 0.625rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-top: auto;
  min-height: 2.75rem;
  border-radius: 0 0 4px 4px;
}
.add-to-cart-bar:hover { background: var(--primary-hover); }

.sold-out-bar {
  width: 100%;
  padding: 0.875rem 0.625rem;
  background: var(--surface-hover);
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 4px 4px;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-header {
  background: linear-gradient(160deg, var(--bg-secondary), var(--bg));
  padding: 2.5rem 1rem 1.75rem; text-align: center;
}
.shop-header h1 { 
  font-size: 1.8rem; 
  color: var(--text); 
  margin-bottom: 0.5rem; 
}
.shop-header p { 
  color: var(--text-muted); 
  font-size: 0.95rem;
}
.shop-body { 
  max-width: 1120px; 
  margin: 0 auto; 
  padding: 1.5rem 1rem; 
}
.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  background: var(--surface); border: 1px solid var(--border);
  padding: 0.375rem 0.875rem; border-radius: 4px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--border-strong); color: var(--text); }
.filter-btn.active { background: var(--primary); color: var(--text-on-primary); border-color: var(--primary); }
.shop-meta { 
  margin-left: auto; 
  font-size: 0.75rem; 
  color: var(--text-muted); 
}

.shop-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  background: var(--surface);
  border-radius: 4px;
  padding: 1rem;
  border: 1px solid var(--border);
}

.shop-filter-search {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-filter-search input {
  width: 100%;
  padding: 0.625rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.shop-filter-search input:focus {
  border-color: var(--primary);
}

.shop-filter-search input::placeholder {
  color: var(--text-muted);
}

.search-clear {
  position: absolute;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.search-clear:hover {
  color: var(--text);
}

.shop-filter-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.875rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.filter-toggle-btn:hover {
  border-color: var(--border-strong);
  background: var(--surface-active);
}

.filter-toggle-btn .filter-icon {
  font-size: 0.9rem;
}

.filter-toggle-btn .filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-pink);
  color: var(--text-on-primary);
  border-radius: 4px;
  padding: 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 1.125rem;
  height: 1.125rem;
  margin-left: 2px;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.shop-sort label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.shop-sort select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.375rem 0.625rem;
  color: var(--text);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.shop-sort select:focus {
  border-color: var(--primary);
}

.shop-filter-panel {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: none;
}

.shop-filter-panel.open {
  display: block;
}

.filter-section {
  margin-bottom: 0.875rem;
}

.filter-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  accent-color: var(--primary);
  width: 0.875rem;
  height: 0.875rem;
  cursor: pointer;
}

.filter-price-range {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-price-inputs input[type="number"] {
  width: 5rem;
  padding: 0.375rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.filter-price-inputs input[type="number"]:focus {
  border-color: var(--primary);
}

.filter-price-inputs span {
  color: var(--text-muted);
}

.filter-actions {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.filter-clear {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.375rem 0.875rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-clear:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.filter-apply {
  background: var(--primary);
  border: none;
  border-radius: 4px;
  padding: 0.375rem 1.125rem;
  color: var(--text-on-primary);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-apply:hover {
  background: var(--primary-hover);
}

.shop-results-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.25rem 0 0.5rem;
  flex-wrap: wrap;
}

.shop-active-categories {
  color: var(--primary);
  font-weight: 500;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid var(--border);
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.no-results h3 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.no-results p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sl-pill.variant-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.sl-pill.variant-unavailable:hover {
  color: var(--text-muted);
  border-color: var(--border);
}

.sl-pill:disabled {
  pointer-events: none;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { max-width: 1000px; margin: 0 auto; padding: 2rem 1rem; }
.back-btn {
  background: none; display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--text-muted); font-size: 0.82rem; margin-bottom: 1.25rem;
  transition: color 0.2s ease;
}
.back-btn:hover { color: var(--primary); }

#detail-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--primary) !important; margin-bottom: 0.25rem; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.detail-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface-active);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  touch-action: pan-y;
}
.detail-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(2rem, 7vw, 3.25rem);
  height: clamp(2rem, 7vw, 3.25rem);
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(11, 14, 12, 0.78);
  color: var(--text);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  line-height: 1;
  z-index: 2;
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.gallery-arrow:hover {
  background: var(--primary);
  color: var(--text-on-primary);
  border-color: var(--primary);
}
.gallery-arrow:active {
  transform: translateY(-50%) scale(0.94);
}
.gallery-arrow-left { left: clamp(0.4rem, 2.5vw, 1rem); }
.gallery-arrow-right { right: clamp(0.4rem, 2.5vw, 1rem); }

.gallery-counter {
  position: absolute;
  left: 50%;
  bottom: clamp(0.4rem, 2.5vw, 1rem);
  transform: translateX(-50%);
  display: none;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(11, 14, 12, 0.8);
  color: var(--text);
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(0.35rem);
  -webkit-backdrop-filter: blur(0.35rem);
}

.detail-info h1 { 
  font-size: 1.6rem; 
  color: var(--text); 
  margin-bottom: 0.5rem; 
}

/* ===== DETAIL SALE PRICING ===== */
.detail-price .sale-price {
  font-size: 1.6rem;
  color: var(--accent-pink);
}
.detail-price .compare-at-price {
  font-size: 1rem;
  margin-left: 0.5rem;
}
.detail-price .regular-price {
  font-size: 1.6rem;
  color: var(--primary);
}

.detail-desc { 
  color: var(--text-muted); 
  margin-bottom: 1.125rem; 
  line-height: 1.7; 
  font-size: 0.95rem;
}
.detail-meta table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 0.82rem; 
  margin-bottom: 1.25rem; 
}
.detail-meta td { 
  padding: 0.5rem 0; 
  border-bottom: 1px solid var(--border); 
}
.detail-meta td:first-child { 
  color: var(--text-muted); 
  width: 40%; 
}
.detail-meta td:last-child { 
  font-weight: 500; 
  color: var(--text); 
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.qty-row .btn-primary {
  flex: 1;
  min-width: 8.75rem;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
}
.qty-ctrl {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border-strong); border-radius: 4px;
  overflow: hidden;
}
.qty-ctrl button {
  background: none; width: 2rem; height: 2rem;
  font-size: 1rem; color: var(--text); transition: background 0.2s ease;
}
.qty-ctrl button:hover { background: var(--surface-hover); }
.qty-ctrl span { 
  padding: 0 0.75rem; 
  font-weight: 600; 
  min-width: 1.75rem; 
  text-align: center; 
  color: var(--text); 
}

.avail-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 600; color: var(--success);
  background: var(--success-muted); border-radius: 4px; padding: 0.25rem 0.75rem; margin-bottom: 0.875rem;
}

/* ============================================================
   CART
   ============================================================ */
.cart-page { 
  max-width: 900px; 
  margin: 0 auto; 
  padding: 2rem 1rem; 
}
.cart-page h1 { 
  font-size: 1.6rem; 
  color: var(--text); 
  margin-bottom: 1.25rem; 
}
.cart-layout { 
  display: grid; 
  grid-template-columns: 1fr 17.5rem; 
  gap: 1.25rem; 
  align-items: start; 
}
.cart-items { 
  display: flex; 
  flex-direction: column; 
  gap: 0.75rem; 
}

.cart-item {
  background: var(--surface); 
  border-radius: var(--radius-sm);
  padding: 0.875rem; 
  display: flex; 
  gap: 0.75rem; 
  align-items: center;
  border: 1px solid var(--border);
}
.cart-item-img {
  width: 3.5rem; 
  height: 3.5rem; 
  border-radius: var(--radius-sm);
  background: var(--surface-active);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { 
  font-family: 'Fredoka', sans-serif; 
  color: var(--text); 
  margin-bottom: 0.125rem; 
  font-size: 0.9rem;
}
.cart-item-info p { 
  font-size: 0.75rem; 
  color: var(--text-muted); 
}
.cart-item-price { 
  font-weight: 700; 
  color: var(--text); 
  font-size: 0.9rem;
  flex-shrink: 0;
}
.cart-item-ctrl { 
  display: flex; 
  align-items: center; 
  gap: 0.375rem; 
  margin-top: 0.375rem; 
}
.cart-item-ctrl button {
  background: var(--bg); 
  border-radius: 4px; 
  width: 1.5rem; 
  height: 1.5rem;
  font-size: 0.8rem; 
  color: var(--text); 
  border: 1px solid var(--border);
  transition: all 0.15s ease;
}
.cart-item-ctrl button:hover { 
  background: var(--surface-hover); 
  border-color: var(--primary); 
}
.cart-item-ctrl span { 
  font-size: 0.8rem; 
  font-weight: 600; 
  min-width: 1.125rem; 
  text-align: center; 
  color: var(--text); 
}
.remove-btn { 
  background: none !important; 
  color: var(--text-muted) !important; 
  border: none !important; 
  font-size: 1rem !important; 
}
.remove-btn:hover { 
  color: var(--danger) !important; 
}

.cart-summary {
  background: var(--surface); 
  border-radius: 4px;
  border: 1px solid var(--border); 
  padding: 1.25rem;
  position: sticky; 
  top: 4.75rem;
}
.cart-summary h3 { 
  font-family: 'Fredoka', sans-serif; 
  font-size: 1.1rem; 
  color: var(--text); 
  margin-bottom: 1rem; 
}
.summary-row { 
  display: flex; 
  justify-content: space-between; 
  font-size: 0.82rem; 
  margin-bottom: 0.625rem; 
  color: var(--text-muted); 
}
.summary-row.total { 
  border-top: 1px solid var(--border); 
  padding-top: 0.75rem; 
  margin-top: 0.25rem; 
  font-weight: 700; 
  font-size: 0.95rem; 
  color: var(--text); 
}

.coupon-row { display: flex; gap: 0.5rem; margin: 0.875rem 0; }
.coupon-row input {
  flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem; font-size: 0.8rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s ease, background 0.2s ease;
  background: var(--bg); color: var(--text);
}
.coupon-row input::placeholder { color: var(--text-muted); }
.coupon-row input:focus { border-color: var(--primary); background: var(--surface); }
.coupon-row button {
  background: var(--surface-active); color: var(--text); border: 1px solid var(--border-strong);
  border-radius: 4px; padding: 0.5rem 0.875rem; font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s ease;
}
.coupon-row button:hover { border-color: var(--primary); color: var(--primary); }

.empty-cart { text-align: center; padding: 3rem 1rem; }
.empty-cart .emoji { font-size: 3.5rem; margin-bottom: 0.875rem; }
.empty-cart h2 { 
  font-size: 1.3rem; 
  color: var(--text); 
  margin-bottom: 0.5rem; 
}
.empty-cart p { 
  color: var(--text-muted); 
  margin-bottom: 1.25rem; 
}

.mobile-checkout-float {
  display: none;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-page { 
  max-width: 900px; 
  margin: 0 auto; 
  padding: 2rem 1rem; 
}
.checkout-page h1 { 
  font-size: 1.6rem; 
  color: var(--text); 
  margin-bottom: 0.5rem; 
}
.checkout-page > p { 
  color: var(--text-muted); 
  margin-bottom: 1.5rem; 
}
.checkout-layout { 
  display: grid; 
  grid-template-columns: 1fr 20rem; 
  gap: 1.5rem; 
  align-items: start; 
}

.checkout-form { 
  background: var(--surface); 
  border-radius: 4px;
  border: 1px solid var(--border); 
  padding: 1.5rem; 
}
.form-section { 
  margin-bottom: 1.5rem; 
}
.form-section h3 {
  font-size: 0.75rem; 
  font-weight: 700; 
  text-transform: uppercase;
  letter-spacing: 0.08em; 
  color: var(--primary); 
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem; 
  border-bottom: 1px solid var(--border);
}
.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0.75rem; 
}
.form-group { 
  margin-bottom: 0.75rem; 
}
.form-group label { 
  display: block; 
  font-size: 0.78rem; 
  font-weight: 500; 
  color: var(--text); 
  margin-bottom: 0.25rem; 
}
.form-group label .opt { 
  color: var(--text-muted); 
  font-weight: 400; 
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem; 
  font-size: 0.9rem; 
  font-family: 'Inter', sans-serif;
  color: var(--text); 
  background: var(--bg);
  outline: none; 
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 5rem; }

.payment-options { display: flex; flex-direction: column; gap: 0.5rem; }
.payment-option {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--border); border-radius: 4px;
  padding: 0.875rem 1rem;
  cursor: pointer; transition: all 0.2s ease;
}
.payment-option:hover { border-color: var(--border-strong); background: var(--surface-hover); }
.payment-option.selected { border-color: var(--primary); background: var(--primary-muted); }
.payment-option input[type="radio"] { accent-color: var(--primary); }
.payment-option .pay-icon { font-size: 1.3rem; flex-shrink: 0; }
.payment-option .pay-info strong { display: block; font-size: 0.85rem; color: var(--text); }
.payment-option .pay-info span { font-size: 0.72rem; color: var(--text-muted); }
.payment-option-unavailable { opacity: 0.55; }
.payment-option-unavailable:hover { border-color: var(--border); background: none; }
.payment-option-unavailable .pay-info span { color: #e0a030; }

.revolut { height: 1.5em; width: 1.5em; }

/* ============================================================
   CONFIRMATION
   ============================================================ */
.confirm-page { 
  max-width: 600px; 
  margin: 0 auto; 
  padding: 3rem 1rem; 
  text-align: center; 
}
.confirm-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirm-page h1 { 
  font-size: 1.8rem; 
  color: var(--text); 
  margin-bottom: 0.625rem; 
}
.confirm-page > p { 
  color: var(--text-muted); 
  margin-bottom: 1.75rem; 
}

.confirm-card {
  background: var(--surface); 
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 1.5rem; 
  text-align: left; 
  margin-bottom: 1.25rem;
}
.confirm-card h3 { 
  font-family: 'Fredoka', sans-serif; 
  color: var(--text); 
  margin-bottom: 0.875rem; 
}
.confirm-row { 
  display: flex; 
  justify-content: space-between; 
  font-size: 0.82rem; 
  padding: 0.375rem 0; 
  border-bottom: 1px solid var(--border); 
  color: var(--text-secondary); 
}
.confirm-row:last-child { border: none; }
.confirm-row span:first-child { color: var(--text-muted); }

.order-num { 
  display: inline-block; 
  background: var(--primary-muted); 
  color: var(--primary); 
  border-radius: var(--radius-sm); 
  padding: 0.25rem 0.875rem; 
  font-weight: 700; 
  font-size: 1rem; 
  margin-bottom: 1rem; 
}

/* ============================================================
   ORDER REMINDER
   ============================================================ */
.order-reminder .icon { font-size: 1rem; flex-shrink: 0; line-height: 1.4; }
.order-reminder strong { color: var(--accent-pink); }
.order-reminder.order-reminder-lg { font-size: 0.9rem; padding: 0.875rem 1rem; }

.order-reminder {
  background: var(--surface-contrast);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ============================================================
   GLOBAL REMINDER BAR
   ============================================================ */
.global-reminder-bar {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--accent-pink-muted); border-bottom: 1px solid var(--accent-pink);
  padding: 0.5rem 2.25rem 0.5rem 0.75rem; 
  font-size: 0.78rem; 
  line-height: 1.5;
  color: var(--text); 
  text-align: center; 
  position: relative;
}
.global-reminder-bar .icon { font-size: 0.95rem; flex-shrink: 0; }
.global-reminder-bar strong { color: var(--accent-pink); }
.global-reminder-bar.dismissed { display: none; }
.global-reminder-close {
  position: absolute; right: 0.625rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 0.85rem; line-height: 1; padding: 0.25rem;
}
.global-reminder-close:hover { color: var(--text); }

/* ============================================================
   TESTIMONIALS & CHAT REVIEWS
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: 1rem; }
.testimonial {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid var(--border);
}
.testimonial .stars { color: var(--accent-pink); font-size: 0.9rem; margin-bottom: 0.625rem; }
.testimonial p { 
  font-style: italic; 
  color: var(--text-secondary); 
  font-size: 0.85rem; 
  margin-bottom: 0.75rem; 
}
.testimonial .author { 
  font-weight: 600; 
  color: var(--text); 
  font-size: 0.8rem; 
}

.chat-reviews-head {
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between;
  gap: 0.75rem; 
  margin-bottom: 1rem;
}
.chat-reviews-head .heads { flex: 1; min-width: 0; }
.chat-reviews-head .section-title,
.chat-reviews-head .section-sub { margin-bottom: 0.125rem; }
.chat-scroll-arrows { display: flex; gap: 0.375rem; flex-shrink: 0; padding-bottom: 0.125rem; }
.chat-scroll-arrow {
  width: 2.25rem; height: 2.25rem; border-radius: 4px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.chat-scroll-arrow:hover { background: var(--surface-hover); border-color: var(--primary); }

.chat-scroll {
  display: flex; gap: 1rem; overflow-x: auto; padding: 0.25rem 0.125rem 1.25rem;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.chat-scroll::-webkit-scrollbar { height: 4px; }
.chat-scroll::-webkit-scrollbar-track { background: transparent; }
.chat-scroll::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }

.phone-mock {
  flex: 0 0 13.75rem; 
  scroll-snap-align: start;
  background: #f4f4f4; 
  border-radius: 1.75rem; 
  border: 6px solid #1b1b1b;
  box-shadow: 0 14px 28px rgba(0,0,0,0.45); 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  height: 26.25rem; 
  position: relative;
}
.phone-mock .pm-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0.875rem 0.125rem; font-size: 0.65rem; font-weight: 600; color: #111;
  background: #f4f4f4;
}
.phone-mock .pm-statusbar .pm-icons { display: flex; gap: 3px; align-items: center; font-size: 0.6rem; }
.phone-mock .pm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.25rem 0.625rem 0.5rem; background: #f4f4f4; border-bottom: 1px solid #e2e2e2;
}
.phone-mock .pm-back { color: #3391ff; font-size: 1.1rem; line-height: 1; }
.phone-mock .pm-contact { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.phone-mock .pm-avatar {
  width: 1.625rem; height: 1.625rem; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; border: 2px solid #fff;
}
.phone-mock .pm-avatar-group { display: flex; }
.phone-mock .pm-avatar-group .pm-avatar:nth-child(2) { margin-left: -10px; }
.phone-mock .pm-name { font-size: 0.6rem; color: #333; font-weight: 500; }
.phone-mock .pm-video { color: #3391ff; font-size: 0.8rem; }
.phone-mock .pm-messages {
  flex: 1; overflow-y: hidden; background: #fff; padding: 0.625rem 0.625rem;
  display: flex; flex-direction: column; gap: 0.375rem;
}
.phone-mock .pm-msg {
  max-width: 78%; padding: 0.375rem 0.625rem; border-radius: 0.875rem; font-size: 0.7rem;
  line-height: 1.3; color: #111; word-wrap: break-word;
}
.phone-mock .pm-msg.in { background: #e9e9eb; align-self: flex-start; border-bottom-left-radius: 4px; }
.phone-mock .pm-msg.out {
  background: #2f8bff; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px;
}
.phone-mock .pm-inputbar {
  display: flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.625rem 0.625rem;
  background: #f4f4f4; border-top: 1px solid #e2e2e2;
}
.phone-mock .pm-plus {
  width: 1.25rem; height: 1.25rem; border-radius: 50%; background: #d8d8da; color: #666;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0;
}
.phone-mock .pm-field {
  flex: 1; background: #fff; border: 1px solid #d8d8da; border-radius: 0.75rem;
  padding: 0.25rem 0.625rem; font-size: 0.65rem; color: #999;
}
.phone-mock .pm-mic { color: #999; font-size: 0.75rem; flex-shrink: 0; }

.review-screenshot {
  flex: 0 0 13.75rem; 
  scroll-snap-align: start;
  background: #111; 
  border-radius: 1.75rem; 
  border: 6px solid #1b1b1b;
  box-shadow: 0 14px 28px rgba(0,0,0,0.45); 
  overflow: hidden; 
  height: 26.25rem; 
  position: relative;
}
.review-screenshot img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; background: #111;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(120deg, var(--surface-contrast) 0%, var(--surface-contrast-hover) 100%);
  color: var(--text-secondary); padding: 2.5rem 1rem; text-align: center;
}
.promo-banner h2 { 
  font-size: 1.6rem; 
  margin-bottom: 0.625rem; 
  color: var(--accent-pink); 
}
.promo-banner p { 
  color: var(--text-muted); 
  margin-bottom: 1.25rem; 
}
.promo-code {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06); border: 2px dashed rgba(255, 40, 179, 0.4);
  border-radius: var(--radius-sm); padding: 0.625rem 1.5rem;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent-pink);
}

/* ============================================================
   EXIT-INTENT POPUP
   ============================================================ */
.exit-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.exit-popup.active {
  display: flex;
}
.exit-popup-content {
  background: var(--surface);
  border-radius: 4px;
  max-width: 25rem;
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-strong);
  position: relative;
  animation: fadeInUp 0.4s ease;
}
.exit-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.exit-popup-close:hover { color: var(--text); }
.exit-popup h2 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  margin-bottom: 0.625rem;
  font-size: 1.3rem;
}
.exit-popup p {
  color: var(--text-muted);
  margin-bottom: 1.125rem;
  font-size: 0.9rem;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; 
  bottom: 1rem; 
  left: 1rem;
  right: 1rem;
  z-index: 999;
  background: var(--surface-active); 
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  display: flex; 
  align-items: center; 
  gap: 0.625rem;
  font-size: 0.85rem; 
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); 
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none; 
  max-width: 100%;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface-contrast); 
  color: var(--text-muted);
  padding: 2.5rem 1rem 1.25rem;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top { 
  display: grid; 
  grid-template-columns: 1.5fr repeat(3, 1fr); 
  gap: 1.75rem; 
  margin-bottom: 2rem; 
}
.footer-brand h3 { 
  font-family: 'Fredoka', sans-serif; 
  color: var(--text); 
  font-size: 1.2rem; 
  margin-bottom: 0.625rem; 
}
.footer-brand h3 span { color: var(--brand-pink); }
.footer-brand p { 
  font-size: 0.8rem; 
  line-height: 1.6; 
}
.footer-col h4 { 
  color: var(--text); 
  font-size: 0.8rem; 
  font-weight: 600; 
  margin-bottom: 0.75rem; 
}
.footer-col a { 
  display: block; 
  font-size: 0.78rem; 
  margin-bottom: 0.5rem; 
  transition: color 0.2s ease; 
  cursor: pointer; 
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom { 
  border-top: 1px solid var(--border-light); 
  padding-top: 1.125rem; 
  font-size: 0.72rem; 
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 40, 179, 0.2); }
  50% { box-shadow: 0 0 35px rgba(255, 40, 179, 0.45); }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   CHECKOUT ENHANCEMENTS - Mobile Help Bar
   ============================================================ */

#checkout-help-bar {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: var(--surface);
  border-top: 2px solid var(--accent-pink);
  padding: 0.625rem 1rem;
  margin: 0 -0.75rem;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.order-reminder-enhanced {
  background: var(--surface-contrast) !important;
  border: 2px solid var(--accent-pink) !important;
  border-radius: var(--radius) !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.shipping-note {
  background: var(--primary-muted);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.875rem;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text);
}

.payment-process-info {
  background: var(--surface-contrast);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  margin-bottom: 0.875rem;
  border-left: 3px solid var(--accent-pink);
}

.payment-process-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
}

.helper-text {
  display: block;
  color: var(--text-muted);
  font-size: 0.65rem;
  margin-top: 0.25rem;
}

/* ============================================================
   LOGO IMAGE RESPONSIVE STYLES
   ============================================================ */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-image {
  height: 5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  .hero2 { 
    min-height: 30rem; 
    margin: 0.75rem 0.625rem 2rem; 
    align-items: flex-end; 
    border-radius: 4px;
  }
  .hero2-media img { object-position: center 30%; }
  .hero2-scrim {
    background: linear-gradient(
      to top,
      var(--bg) 0%,
      var(--bg) 48%,
      rgba(11, 14, 12, 0.9) 62%,
      rgba(11, 14, 12, 0.15) 82%,
      rgba(11, 14, 12, 0) 100%
    );
  }
  .hero2-content { 
    max-width: 100%; 
    padding: 1.5rem 1rem 1.75rem; 
  }
  .hero2-content > p { max-width: 100%; }
  
  .detail-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
  }
  .cart-layout { 
    grid-template-columns: 1fr; 
  }
  .checkout-layout { 
    grid-template-columns: 1fr; 
    gap: 1.25rem;
  }
  .form-row { 
    grid-template-columns: 1fr; 
  }
  .footer-top { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .checkout-page .cart-summary {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    border-radius: 4px !important;
    box-shadow: var(--shadow-sm) !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 1.25rem !important;
    margin-top: 0 !important;
  }
  
  .checkout-page {
    padding-bottom: 2rem !important;
  }
  
  .mobile-checkout-float {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    position: sticky;
    top: 4rem;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(20, 25, 23, 0.95);
  }
  .mobile-checkout-float .btn-primary {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    min-height: 2.125rem;
  }

  .nav-search {
    max-width: 100%;
    margin: 0 0.25rem;
  }
  .nav-search input {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 0.75rem;
    height: 3.75rem;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-links { 
    display: none; 
  }
  .hamburger { 
    display: flex; 
    flex-direction: column; 
  }
  .nav-howtoorder-btn {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
  .cart-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.72rem;
  }
  .cart-badge {
    width: 1rem;
    height: 1rem;
    font-size: 0.6rem;
  }
  
  #checkout-help-bar {
    display: flex !important;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  #featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  .product-card { 
    border-radius: 4px; 
  }
  .product-card:hover { 
    transform: none; 
  }
  .product-body { 
    padding: 0.625rem 0.625rem 0; 
  }
  .product-img { 
    border-radius: 4px; 
    margin-bottom: 0.5rem; 
  }
  .product-badge { 
    top: 0.375rem; 
    left: 0.375rem; 
    padding: 0.125rem 0.5rem; 
    font-size: 0.55rem; 
  }
  .product-cat { 
    font-size: 0.58rem; 
    margin-bottom: 0.125rem; 
    letter-spacing: 0.03em; 
  }
  .product-name {
    font-size: 0.74rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
    min-height: 2.4em;
  }
  .product-desc { 
    display: none; 
  }
  .product-price-row { 
    margin-bottom: 0.375rem; 
  }
  .sale-price { 
    font-size: 0.88rem; 
  }
  .compare-at-price {
    font-size: 0.65rem;
  }
  .regular-price {
    font-size: 0.88rem;
  }
  .product-rating { 
    font-size: 0.6rem; 
    letter-spacing: 0.5px; 
  }
  .card-option-label { 
    font-size: 0.55rem; 
    margin-bottom: 0.1875rem; 
  }
  .sl-row { 
    gap: 0.375rem; 
    row-gap: 0.1875rem; 
  }
  .sl-pill { 
    font-size: 0.68rem; 
  }
  .card-qty-row { 
    margin: 0.375rem 0 0.5rem; 
  }
  .card-qty-ctrl { 
    gap: 0.375rem; 
  }
  .card-qty-ctrl button {
    width: 1.375rem; 
    height: 1.375rem;
    font-size: 0.7rem;
  }
  .card-qty-ctrl .qty-val { 
    font-size: 0.72rem; 
    min-width: 0.625rem; 
  }
  .add-to-cart-bar {
    padding: 0.75rem 0.375rem;
    font-size: 0.68rem;
    min-height: 2.5rem;
    border-radius: 0 0 4px 4px;
  }
  .sold-out-bar {
    padding: 0.75rem 0.375rem;
    font-size: 0.64rem;
    min-height: 2.5rem;
    border-radius: 0 0 4px 4px;
  }
  
  .cart-page { 
    padding: 1.5rem 0.75rem; 
  }
  .cart-item {
    padding: 0.625rem;
    gap: 0.625rem;
    flex-wrap: wrap;
  }
  .cart-item-img {
    width: 3rem;
    height: 3rem;
  }
  .cart-item-info h4 {
    font-size: 0.8rem;
  }
  .cart-item-price {
    font-size: 0.8rem;
    margin-left: auto;
  }
  .cart-item-ctrl {
    flex-wrap: wrap;
  }
  .cart-summary {
    padding: 1rem;
    position: relative;
    top: 0;
  }
  .cart-layout {
    gap: 1rem;
  }
  
  .checkout-page { 
    padding: 1.25rem 0.75rem 2rem !important; 
  }
  .checkout-form {
    padding: 1rem;
  }
  
  .checkout-page .cart-summary {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    border-radius: 4px !important;
    box-shadow: var(--shadow-sm) !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 1.125rem !important;
    margin-top: 0 !important;
    border: 1px solid var(--border);
    background: var(--surface);
  }
  
  .checkout-page {
    padding-bottom: 2rem !important;
  }
  
  .payment-option {
    padding: 0.75rem 0.875rem !important;
    min-height: 3rem;
    gap: 0.625rem;
  }
  .payment-option input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
  }
  
  .checkout-page .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
  }
  
  .checkout-page .summary-row {
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }
  
  .checkout-page .summary-row.total {
    font-size: 0.9rem;
    padding-top: 0.625rem;
  }
  
  .trust-badges-checkout {
    margin: 0.5rem 0 !important;
  }
  .trust-badges-checkout > div {
    font-size: 0.6rem !important;
  }
  
  .confirm-page { 
    padding: 2rem 0.75rem; 
  }
  .confirm-card {
    padding: 1.125rem;
  }
  .confirm-row {
    font-size: 0.78rem;
    padding: 0.3125rem 0;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .trust-badges {
    gap: 1rem 1.5rem;
    padding: 1.5rem 0.75rem;
  }
  .trust-badge {
    width: 5rem;
  }
  .trust-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .trust-icon svg {
    width: 1rem;
    height: 1rem;
  }
  .trust-label {
    font-size: 0.6rem;
  }
  
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
  .cat-card {
    padding: 0.875rem 0.75rem;
    border-radius: 4px;
  }
  .cat-card h3 {
    font-size: 0.78rem;
  }
  .cat-card::after {
    display: none;
  }
  
  .shop-filters {
    gap: 0.375rem;
    margin-bottom: 1rem;
  }
  .filter-btn {
    padding: 0.3125rem 0.75rem;
    font-size: 0.7rem;
  }
  .shop-meta {
    font-size: 0.68rem;
  }
  
  .section {
    padding: 1.5rem 0.75rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-sub {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  
  footer {
    padding: 2rem 0.75rem 1rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  
  .global-reminder-bar { 
    font-size: 0.7rem; 
    padding: 0.375rem 2rem 0.375rem 0.625rem; 
    gap: 0.375rem;
  }
  
  .toast {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8rem;
  }
  
  .exit-popup-content {
    padding: 1.5rem 1rem;
    margin: 0.75rem;
  }
  .exit-popup h2 {
    font-size: 1.1rem;
  }
  .exit-popup p {
    font-size: 0.82rem;
  }

  .shop-filter-bar {
    padding: 0.75rem;
    gap: 0.625rem;
  }
  
  .shop-filter-controls {
    flex-wrap: wrap;
  }
  
  .shop-sort {
    margin-left: 0;
    flex: 1;
  }
  
  .shop-sort select {
    flex: 1;
    min-width: 6.25rem;
  }
  
  .filter-options {
    gap: 0.25rem 0.625rem;
  }
  
  .filter-option {
    font-size: 0.72rem;
  }
  
  .filter-price-inputs input[type="number"] {
    width: 4.0625rem;
  }
  
  .filter-actions {
    flex-wrap: wrap;
  }
  
  .filter-actions button {
    flex: 1;
    min-width: 5rem;
    justify-content: center;
  }

  .nav-search input {
    font-size: 0.7rem;
    padding: 0.25rem 0.375rem;
  }
  .nav-search-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.375rem 0.25rem 0.125rem;
  }
}

@media (max-width: 480px) {
  .hero2 { 
    min-height: 25rem; 
    margin: 0.5rem 0.5rem 1.5rem; 
  }
  .hero2-content { 
    padding: 1rem 0.75rem 1.25rem; 
  }
  .hero2-content h1 { 
    font-size: 1.5rem; 
  }
  .hero2-content > p { 
    font-size: 0.82rem; 
  }
  .hero2-checks li { 
    font-size: 0.78rem; 
  }
  .hero2-stat { 
    font-size: 0.78rem; 
  }
  .hero2-stars { 
    font-size: 0.95rem; 
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  #featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .product-body { 
    padding: 0.5rem 0.5rem 0; 
  }
  .product-name { 
    font-size: 0.68rem; 
    min-height: 2.2em;
  }
  .sale-price { 
    font-size: 0.8rem; 
  }
  .compare-at-price {
    font-size: 0.6rem;
  }
  .regular-price {
    font-size: 0.8rem;
  }
  .product-price-row {
    flex-wrap: wrap;
    gap: 0.125rem;
  }
  .product-rating { 
    font-size: 0.55rem; 
  }
  
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cart-item {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .cart-item-img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cart-item-info h4 {
    font-size: 0.72rem;
  }
  .cart-item-info p {
    font-size: 0.65rem;
  }
  .cart-item-price {
    font-size: 0.72rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-badges {
    gap: 0.75rem 1rem;
    padding: 1rem 0.5rem;
  }
  .trust-badge {
    width: 4.0625rem;
  }
  .trust-icon {
    width: 1.875rem;
    height: 1.875rem;
  }
  .trust-icon svg {
    width: 0.875rem;
    height: 0.875rem;
  }
  .trust-label {
    font-size: 0.55rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.125rem;
    font-size: 0.8rem;
  }
  .btn-outline {
    padding: 0.5625rem 1rem;
    font-size: 0.8rem;
  }
  
  .detail-info h1 {
    font-size: 1.3rem;
  }
  .detail-price .sale-price {
    font-size: 1.3rem;
  }
  .detail-price .regular-price {
    font-size: 1.3rem;
  }
  .detail-price .compare-at-price {
    font-size: 0.85rem;
  }
  .qty-row .btn-primary {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    min-width: 100%;
  }
  .qty-ctrl button {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.85rem;
  }
  .qty-ctrl span {
    padding: 0 0.625rem;
    min-width: 1.5rem;
    font-size: 0.85rem;
  }
  
  .checkout-page { 
    padding: 1rem 0.625rem 1.5rem !important; 
  }
  .checkout-form {
    padding: 0.875rem;
  }
  
  .checkout-page .cart-summary {
    padding: 0.875rem !important;
    border-radius: 4px !important;
  }
  
  .form-group {
    margin-bottom: 0.625rem;
  }
  .form-group input, 
  .form-group textarea, 
  .form-group select {
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
    min-height: 2.75rem;
  }
  
  .payment-option {
    padding: 0.625rem 0.75rem !important;
    min-height: 2.75rem;
  }
  .payment-option .pay-info strong {
    font-size: 0.78rem;
  }
  .payment-option .pay-info span {
    font-size: 0.65rem;
  }
  
  .checkout-page .btn-primary {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .shop-filter-bar {
    padding: 0.625rem;
  }
  
  .shop-filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .filter-toggle-btn {
    justify-content: center;
  }
  
  .shop-sort {
    flex-wrap: wrap;
  }
  
  .shop-sort label {
    width: 100%;
  }
  
  .shop-sort select {
    width: 100%;
  }
  
  .filter-section {
    margin-bottom: 0.625rem;
  }
  
  .filter-options {
    gap: 0.25rem 0.5rem;
  }

  .nav-search input {
    font-size: 0.65rem;
    padding: 0.25rem 0.3125rem;
  }
  .nav-search-btn {
    font-size: 0.65rem;
    padding: 0.1875rem 0.3125rem 0.1875rem 0.125rem;
  }
}

@media (max-width: 360px) {
  .products-grid {
    gap: 0.375rem;
  }
  #featured-grid {
    gap: 0.375rem;
  }
  .product-body { 
    padding: 0.375rem 0.375rem 0; 
  }
  .product-name { 
    font-size: 0.62rem; 
  }
  .sale-price { 
    font-size: 0.72rem; 
  }
  .regular-price {
    font-size: 0.72rem;
  }
  .sl-pill { 
    font-size: 0.6rem; 
  }
  .add-to-cart-bar {
    font-size: 0.6rem;
    padding: 0.625rem 0.25rem;
    min-height: 2.25rem;
  }
  .sold-out-bar {
    font-size: 0.58rem;
    padding: 0.625rem 0.25rem;
    min-height: 2.25rem;
  }
  
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .cat-card {
    padding: 0.625rem 0.625rem;
  }
  .cat-card h3 {
    font-size: 0.7rem;
  }
  
  .nav-logo {
    font-size: 0.95rem;
  }
  .cart-btn {
    padding: 0.25rem 0.625rem;
    font-size: 0.65rem;
  }
  .cart-badge {
    width: 0.875rem;
    height: 0.875rem;
    font-size: 0.55rem;
  }

  .nav-search {
    max-width: 6.25rem;
  }
  .nav-search input {
    font-size: 0.6rem;
    padding: 0.125rem 0.25rem;
  }
  .nav-search-btn {
    font-size: 0.6rem;
    padding: 0.125rem 0.25rem 0.125rem 0.0625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-scroll { scroll-behavior: auto; }
  .exit-popup-content { animation: none; }
  .nav-howtoorder-btn { animation: none; }
}

/* ============================================================
   SHIPPING & DISCREET BADGES
   ============================================================ */

.discreet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--primary-muted);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.discreet-badge .icon {
  font-size: 0.85rem;
}

.free-shipping-banner {
  background: var(--success-muted);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  border-left: 3px solid var(--success);
  margin: 0.625rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.free-shipping-banner .icon {
  font-size: 1.2rem;
}

.free-shipping-banner p {
  font-size: 0.82rem;
  color: var(--text);
  margin: 0;
}

.free-shipping-banner strong {
  color: var(--success);
}

.customs-warning {
  background: var(--surface-contrast);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  border-left: 3px solid var(--accent-pink);
  margin: 0.625rem 0;
}

.customs-warning p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.customs-warning .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.customs-warning strong {
  color: var(--accent-pink);
}

.shipping-info {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0;
}

.shipping-info .icon {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .free-shipping-banner {
    padding: 0.5rem 0.75rem;
  }
  .free-shipping-banner p {
    font-size: 0.75rem;
  }
  .customs-warning {
    padding: 0.5rem 0.75rem;
  }
  .customs-warning p {
    font-size: 0.68rem;
  }
  .discreet-badge {
    font-size: 0.6rem;
    padding: 0.1875rem 0.625rem;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 4rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 3.5rem;
  }
}

/* ============================================================
   LANGUAGE / CURRENCY SELECTORS
   ============================================================ */
.language-selector,
.currency-selector {
  position: relative;
  display: inline-block;
}

.lang-btn,
.currency-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}

.lang-btn:hover,
.currency-btn:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.lang-dropdown,
.currency-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 9.375rem;
  padding: 0.25rem 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.lang-dropdown.open,
.currency-dropdown.open {
  display: block;
}

.lang-dropdown button,
.currency-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.lang-dropdown button:hover,
.currency-dropdown button:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.lang-dropdown button.active,
.currency-dropdown button.active {
  background: var(--primary-muted);
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lang-btn .lang-code,
  .currency-btn .currency-code {
    display: none;
  }
  
  .lang-btn,
  .currency-btn {
    padding: 0.25rem 0.375rem;
    font-size: 0.7rem;
  }
  
  .lang-dropdown,
  .currency-dropdown {
    right: -0.5rem;
    min-width: 8rem;
  }
  
  .nav-right {
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .lang-btn,
  .currency-btn {
    padding: 0.1875rem 0.3125rem;
    font-size: 0.65rem;
  }
  
  .lang-dropdown,
  .currency-dropdown {
    min-width: 7rem;
  }
  
  .lang-dropdown button,
  .currency-dropdown button {
    font-size: 0.7rem;
    padding: 0.375rem 0.625rem;
  }
}

/* ============================================================
   HERO SEARCH BAR
   ============================================================ */
.hero-search-container {
  padding: 0.75rem 1rem 0.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-search-wrapper {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
  overflow: hidden;
}

.hero-search-wrapper:focus-within {
  border-color: var(--primary);
}

.hero-search-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.625rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  min-width: 0;
}

.hero-search-wrapper input::placeholder {
  color: var(--text-muted);
}

.hero-search-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.hero-search-btn:hover {
  color: var(--text);
}

@media (max-width: 860px) {
  .hero-search-container {
    padding: 0.625rem 0.75rem 0.125rem;
  }
  
  .hero-search-wrapper input {
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
  }
  
  .hero-search-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero-search-container {
    padding: 0.5rem 0.625rem 0.125rem;
  }
  
  .hero-search-wrapper {
    border-radius: var(--radius-sm);
  }
  
  .hero-search-wrapper input {
    font-size: 0.78rem;
    padding: 0.4375rem 0.625rem;
  }
  
  .hero-search-btn {
    padding: 0.4375rem 0.625rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-search-container {
    padding: 0.375rem 0.5rem 0.125rem;
  }
  
  .hero-search-wrapper input {
    font-size: 0.72rem;
    padding: 0.375rem 0.5rem;
  }
  
  .hero-search-btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 2.5rem;
}
.breadcrumbs a,
.breadcrumbs .breadcrumb-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.breadcrumbs a:hover,
.breadcrumbs .breadcrumb-link:hover {
  color: var(--primary);
}
.breadcrumbs .breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}
.breadcrumbs .breadcrumb-separator {
  color: var(--border-strong);
  user-select: none;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  gap: 1rem;
}
.faq-question:hover {
  background: var(--surface-hover);
}
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-answer.open {
  max-height: 18.75rem;
  padding: 0 1.25rem 1rem 1.25rem;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}
.faq-answer p strong {
  color: var(--text);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}
.error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.error-page h1 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.error-page p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   RESPONSE-TIME
   ============================================================ */
.response-time {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--success-muted);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
}
.response-time .indicator-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.response-time-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.response-time-footer .indicator-dot {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.625rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sticky-mobile-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
}
.sticky-mobile-cta .cta-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.sticky-mobile-cta .cta-info .cta-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}
.sticky-mobile-cta .cta-info .cta-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.sticky-mobile-cta .cta-info .cta-price span {
  color: var(--primary);
}
.sticky-mobile-cta .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  flex-shrink: 0;
  min-height: 2.5rem;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 4.5rem;
  }
  body.page-checkout,
  body.page-confirm {
    padding-bottom: 0;
  }
  .page-checkout .sticky-mobile-cta,
  .page-confirm .sticky-mobile-cta {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sticky-mobile-cta {
    padding: 0.5rem 0.75rem;
  }
  .sticky-mobile-cta .cta-info .cta-price {
    font-size: 0.8rem;
  }
  .sticky-mobile-cta .btn-primary {
    padding: 0.375rem 0.875rem;
    font-size: 0.7rem;
    min-height: 2.25rem;
  }
}

.response-time-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}