/* ============================================================
   SLCE – STYLE.CSS
   Design System: Fairway | Premium Golf Aesthetic
   ============================================================ */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  /* Colors */
  --clr-primary: #2D6A4F;        /* Fairway Green */
  --clr-primary-light: #40916C;
  --clr-primary-dark: #1B4332;
  --clr-gold: #B7950B;           /* Championship Gold */
  --clr-gold-light: #D4AC0D;
  --clr-sand: #F0F4F0;           /* Light Green-White */
  --clr-sand-dark: #D8E8DC;
  --clr-pool: #1B4332;           /* Deep Forest Green */
  --clr-pool-light: #40916C;
  --clr-pool-dark: #081C15;

  /* Neutrals */
  --clr-bg: #F8FBF8;             /* Off-White with green tint */
  --clr-bg-card: #FFFFFF;
  --clr-text: #1A2E22;           /* Dark Forest */
  --clr-text-muted: #4A6741;
  --clr-text-light: #7A9E82;
  --clr-border: rgba(45, 106, 79, 0.18);

  /* Gradients */
  --grad-hero: linear-gradient(165deg, rgba(27,67,50,0.45) 0%, rgba(8,28,21,0.80) 100%);
  --grad-warm: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
  --grad-card-hover: linear-gradient(180deg, transparent 55%, rgba(45,106,79,0.12) 100%);
  --grad-banner: linear-gradient(135deg, #1B4332 0%, #2D6A4F 40%, #40916C 100%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 16px 56px rgba(27, 67, 50, 0.18);
  --shadow-warm: 0 8px 32px rgba(45, 106, 79, 0.28);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav Height */
  --nav-h: 72px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  background: var(--grad-warm);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-warm);
  transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 133, 74, 0.4);
  filter: brightness(1.05);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: var(--clr-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-primary);
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  color: var(--clr-text);
  transition: background var(--t-fast), color var(--t-fast);
}

.btn-icon:hover { background: var(--clr-sand); color: var(--clr-primary); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-text);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

.navbar.scrolled {
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(44,36,22,0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  transition: color var(--t-fast);
}

.navbar.scrolled .nav-logo { color: var(--clr-text); }

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(242,195,74,0.6));
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-fast);
}

.navbar.scrolled .nav-link { color: var(--clr-text-muted); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-warm);
  border-radius: var(--radius-pill);
  transition: width var(--t-base);
}

.nav-link:hover::after,
.nav-link:focus::after { width: 100%; }

.nav-link:hover { color: #fff; }
.navbar.scrolled .nav-link:hover { color: var(--clr-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.9);
  transition: background var(--t-fast), transform var(--t-fast);
}

.navbar.scrolled .btn-cart { color: var(--clr-text); }

.btn-cart:hover { background: rgba(255,255,255,0.15); transform: scale(1.1); }
.navbar.scrolled .btn-cart:hover { background: var(--clr-sand); }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--clr-gold);
  color: var(--clr-text);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform var(--t-slow);
}

.cart-badge.visible { transform: scale(1); }

.navbar.scrolled .btn-icon { color: var(--clr-text-muted); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: var(--radius-pill);
  transition: transform var(--t-base), opacity var(--t-fast);
}

.navbar.scrolled .hamburger span { background: var(--clr-text); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-warm-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(242,195,74,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 var(--space-lg);
  margin: 0 auto;
  text-align: center;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-sm);
  animation: fade-up 0.8s 0.2s both;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.2);
  margin-bottom: var(--space-md);
  animation: fade-up 0.8s 0.35s both;
}

.hero-title-accent {
  background: linear-gradient(90deg, #FAD97A, #F5A06E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin: 0 auto var(--space-lg);
  animation: fade-up 0.8s 0.5s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  animation: fade-up 0.8s 0.65s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  animation: fade-up 0.8s 0.8s both;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fade-up 0.8s 1.2s both;
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--clr-bg-card);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-md) 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
}

.trust-icon { font-size: 1.8rem; flex-shrink: 0; }

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  /* Mobile: scrollable track handled via @media */
}

.cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.75rem;
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}

.cat-icon { font-size: 1.2rem; }

.cat-btn:hover {
  border-color: var(--clr-primary-light);
  color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cat-btn.active {
  background: var(--grad-warm);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: var(--space-lg) 0 var(--space-2xl);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.sort-select {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  background: var(--clr-bg-card);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--clr-text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C7A5E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem;
  transition: border-color var(--t-fast);
}

.sort-select:focus {
  outline: none;
  border-color: var(--clr-primary);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* Product Card */
.product-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--clr-sand);
}

.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.badge-new { background: var(--clr-pool); color: #fff; }
.badge-sale { background: var(--clr-primary); color: #fff; }
.badge-hot { background: var(--clr-gold); color: var(--clr-text); }

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 1;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity var(--t-base), transform var(--t-slow);
  border: none;
  cursor: pointer;
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-wishlist.active { color: #E05555; }
.product-wishlist:hover { background: rgba(255,255,255,0.95); transform: scale(1.1) !important; }

.product-quick-view {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transform: translateY(100%);
  transition: transform var(--t-base);
}

.product-card:hover .product-quick-view { transform: translateY(0); }

/* Product Info */
.product-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 6px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-stars {
  font-size: 0.8rem;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.product-stars span { color: var(--clr-text-muted); margin-left: 4px; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-text);
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.btn-add-cart {
  padding: 0.55rem 1.1rem;
  background: var(--clr-pool);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-slow), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--clr-pool-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(42, 127, 168, 0.35);
}

.btn-add-cart.added {
  background: #3DAA72;
  animation: pop var(--t-slow) both;
}

@keyframes pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* Load More */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--grad-banner);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.banner-text {
  flex: 1;
  max-width: 500px;
}

.banner-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-sm);
}

.banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
}

.banner-sub strong { color: #FAD97A; }

.banner-deco {
  position: relative;
  width: 300px;
  height: 220px;
  flex-shrink: 0;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.deco-1 { width: 200px; height: 200px; top: 10px; right: 0; }
.deco-2 { width: 130px; height: 130px; top: -10px; right: 40px; background: rgba(255,255,255,0.05); }
.deco-3 { width: 80px; height: 80px; bottom: 0; right: 80px; background: rgba(255,255,255,0.12); }

.deco-emoji {
  position: absolute;
  font-size: 3.5rem;
  animation: float 3s ease-in-out infinite;
  right: 60px; top: 30px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.deco-e2 { font-size: 2.5rem; right: 140px; top: 100px; animation-delay: -1s; animation-duration: 3.5s; }
.deco-e3 { font-size: 2rem; right: 20px; bottom: 20px; animation-delay: -0.5s; animation-duration: 2.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-text .section-title { margin-bottom: var(--space-md); }

.about-body {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.about-text .btn-primary { margin-top: var(--space-sm); }

.about-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-blob {
  position: absolute;
  inset: 0;
  background: var(--clr-sand);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  opacity: 0.6;
  animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  33%       { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%       { border-radius: 55% 45% 65% 35% / 35% 65% 45% 55%; }
}

.about-card {
  position: absolute;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 1;
  border: 1px solid var(--clr-border);
}

.about-card-1 {
  top: 60px; left: 20px;
  animation: float 4s ease-in-out infinite;
}

.about-card-2 {
  bottom: 60px; right: 20px;
  animation: float 4s ease-in-out infinite;
  animation-delay: -2s;
}

.about-card-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--clr-sand);
  padding: var(--space-2xl) 0;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.newsletter-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.newsletter-sub {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.newsletter-input-wrap {
  display: flex;
  gap: var(--space-xs);
  background: var(--clr-bg-card);
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--clr-text);
  outline: none;
}

.newsletter-input::placeholder { color: var(--clr-text-light); }

.newsletter-submit { padding: 0.7rem 1.5rem; font-size: 0.9rem; }

.newsletter-legal {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  margin-top: var(--space-sm);
}

.newsletter-legal a { color: var(--clr-primary); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-text);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-lg);
  align-items: start;
}

/* The three link columns sit inside this wrapper */
.footer-cols-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-logo { color: #fff; margin-bottom: var(--space-sm); }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.social-link:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-md);
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.footer-col a:hover { color: var(--clr-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--clr-bg);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(44, 36, 22, 0.2);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-card);
}

.cart-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-text);
}

.cart-close {
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--t-fast), color var(--t-fast);
}

.cart-close:hover { background: var(--clr-sand); color: var(--clr-primary); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  height: 100%;
}

.cart-empty-icon { font-size: 4rem; margin-bottom: var(--space-md); opacity: 0.5; }

.cart-empty-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.cart-empty-sub {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--clr-border);
  animation: fade-up 0.3s both;
}

.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--clr-sand);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 28px; height: 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.cart-qty-btn:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }

.cart-qty-num {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--clr-text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 0;
  cursor: pointer;
  transition: color var(--t-fast);
  text-decoration: underline;
  background: none; border: none;
}

.cart-item-remove:hover { color: #E05555; }

.cart-footer {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg-card);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.cart-shipping-note {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.cart-checkout {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-xs);
  font-size: 1rem;
  padding: 1rem;
}

.cart-continue {
  width: 100%;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  padding: 0.7rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast);
}

.cart-continue:hover { background: var(--clr-sand); color: var(--clr-text); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--clr-text);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  pointer-events: all;
  white-space: nowrap;
}

.toast.out { animation: toast-out 0.3s ease both; }

.toast-icon { font-size: 1.1rem; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(8px) scale(0.95); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer animate-in triggers */
.animate-in { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE – TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid          { grid-template-columns: repeat(3, 1fr); }
  .trust-items           { grid-template-columns: repeat(2, 1fr); }
  /* Footer: brand stacks above cols-row at tablet */
  .footer-grid           { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-cols-row       { grid-template-columns: repeat(3, 1fr); }
  .about-grid            { grid-template-columns: 1fr; }
  .about-visual          { height: 300px; }
  .hero-title            { font-size: clamp(2.6rem, 6vw, 4.5rem); }
}

/* ============================================================
   RESPONSIVE – MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Tokens ── */
  :root {
    --nav-h:    60px;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
  }

  /* ── Base ── */
  .container { padding: 0 1rem; }

  /* ── Announce Bar ── */
  .announce-bar {
    height: 32px;
    font-size: 0.72rem;
  }

  /* ── Navbar ── */
  .navbar { padding: 0 1rem; }
  .hamburger { display: flex; }

  /* Mobile menu drawer */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0; right: 0;
    bottom: 0;
    background: rgba(253, 250, 245, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    transition: opacity var(--t-base);
  }

  .nav-links.open { display: flex; }

  .nav-links .nav-link {
    color: var(--clr-text);
    font-size: 1.5rem;
    font-weight: 700;
  }

  /* ── Hero ── */
  .hero {
    height: 100svh;
    min-height: 600px;
  }

  .hero-content {
    padding: 0 1.25rem;
    padding-top: calc(var(--nav-h) + 32px); /* nav + announce */
    max-width: 100%;
  }

  .hero-eyebrow-wrap {
    padding: 5px 14px;
    margin-bottom: 1rem;
  }

  .hero-eyebrow { font-size: 0.72rem; }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .btn-primary, .btn-ghost {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }

  .hero-stats { gap: 1.5rem; }
  .stat-num   { font-size: 1.25rem; }
  .stat-label { font-size: 0.65rem; }

  .hero-scroll-indicator { display: none; }

  /* ── Marquee ── */
  .marquee-strip { display: none; }

  /* ── Trust Bar ── */
  .trust-bar { padding: 1rem 0; }

  /* Horizontal scroll strip on mobile */
  .trust-items {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }
  .trust-items::-webkit-scrollbar { display: none; }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    padding: 1rem 0.75rem;
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .trust-icon {
    width: 44px; height: 44px;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  /* ── Spotlight ── */
  .spotlight { padding: 3rem 0; }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .spotlight-img-wrap {
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
  }

  .spotlight-name { font-size: 1.75rem; }

  .spotlight-price { font-size: 1.6rem; }

  .spotlight-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .spotlight-cart-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.95rem;
  }

  .spotlight-features { gap: 8px; }
  .feat-icon { width: 20px; height: 20px; }

  /* ── Categories ── */
  .categories { padding: 2.5rem 0 1.5rem; }

  .section-header { margin-bottom: 1.5rem; }

  /* Horizontal scrolling pill row */
  .category-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.6rem;
    padding: 0.5rem 1rem 1rem;
    margin: 0 -1rem;          /* bleed to edge */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .category-filters::-webkit-scrollbar { display: none; }

  .cat-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* ── Products ── */
  .products { padding: 1rem 0 3rem; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .products-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }

  .products-header .section-title { font-size: 1.5rem; }

  .sort-select {
    padding: 0.5rem 2rem 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  /* Product cards – tighter on mobile */
  .product-card { border-radius: var(--radius-md); }

  .product-img-wrap { aspect-ratio: 1 / 1; }

  .product-info { padding: 0.75rem; }

  .product-name { font-size: 0.85rem; margin-bottom: 4px; }

  .product-stars { font-size: 0.72rem; margin-bottom: 0.6rem; }

  .product-price { font-size: 1rem; }

  .product-price-old { font-size: 0.75rem; }

  .product-price-row { gap: 0.4rem; }

  .btn-add-cart {
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  /* Badges smaller on mobile */
  .product-badge { font-size: 0.65rem; padding: 3px 9px; }

  /* Wishlist always visible on mobile (no hover) */
  .product-wishlist {
    opacity: 1;
    transform: scale(1);
    width: 32px; height: 32px;
    font-size: 0.85rem;
  }

  /* Quick-view hidden on mobile */
  .product-quick-view { display: none; }

  /* ── Promo Banner ── */
  .promo-banner { padding: 2rem 0; }
  .banner-inner { flex-direction: column; gap: 1.5rem; }
  .banner-title { font-size: 1.9rem; }
  .banner-sub   { font-size: 0.9rem; }
  .banner-deco  { display: none; }

  /* ── About ── */
  .about { padding: 3rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { height: 200px; }
  .about-card { padding: 1rem 1.25rem; }
  .about-card-num { font-size: 1.8rem; }

  /* ── Newsletter ── */
  .newsletter { padding: 3rem 0; }
  .newsletter-title { font-size: 1.5rem; }
  .newsletter-sub   { font-size: 0.88rem; }
  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: var(--radius-lg);
    gap: 0;
    padding: 8px;
  }
  .newsletter-input { padding: 0.7rem 0.9rem; }
  .newsletter-submit {
    width: 100%;
    border-radius: 12px !important;
    padding: 0.8rem;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-cols-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

  /* ── Cart sidebar ── */
  .cart-sidebar {
    width: 100%;
    height: 92svh;
    top: auto;
    bottom: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateY(100%);
  }
  .cart-sidebar.open { transform: translateY(0); }

  /* Cart header drag handle */
  .cart-header {
    padding: 10px var(--space-lg) var(--space-md);
    position: relative;
  }
  .cart-header::before {
    content: '';
    display: block;
    width: 40px; height: 4px;
    background: var(--clr-border);
    border-radius: var(--radius-pill);
    margin: 0 auto 1rem;
  }

  /* Floating add-to-cart bar for spotlight on mobile */
  .spotlight-mobile-bar {
    display: flex;
  }

  /* ── Orbs hidden on mobile ── */
  .hero-orb { display: none; }

  /* ── Cursor glow disabled on mobile ── */
  .cursor-glow { display: none; }

  /* ── Section titles ── */
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* ── Buttons – better touch targets ── */
  .btn-primary, .btn-ghost, .btn-outline {
    min-height: 48px;
  }
  .cat-btn, .btn-add-cart, .cart-qty-btn {
    min-height: 44px;
  }

  /* ── Load more ── */
  .btn-outline { width: 100%; justify-content: center; }
}

/* ============================================================
   RESPONSIVE – SMALL PHONES  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
    letter-spacing: -0.01em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .product-grid { gap: 0.6rem; }

  .product-info { padding: 0.6rem; }

  .product-name { font-size: 0.8rem; }

  .btn-add-cart {
    padding: 0.45rem 0.6rem;
    font-size: 0.72rem;
  }

  .spotlight-name { font-size: 1.5rem; }

  .trust-item { min-width: 120px; }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .stat-divider { height: 28px; }

  /* Tighter sections */
  .products   { padding: 0.75rem 0 2.5rem; }
  .categories { padding: 2rem 0 1rem; }
  .spotlight  { padding: 2rem 0; }

  .footer-cols-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ✦ PREMIUM UPGRADE STYLES ✦
   ============================================================ */

/* ---- ANNOUNCEMENT BAR ---- */
.announce-bar {
  position: relative;
  z-index: 1001;
  background: linear-gradient(90deg, #1A1008 0%, #2C1A0A 50%, #1A1008 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  animation: marquee-left 28s linear infinite;
  padding-left: 100%;
}

.announce-track span strong { color: var(--clr-gold-light); }

.announce-dot { color: var(--clr-gold); opacity: 0.6; }

.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  cursor: pointer;
  transition: color var(--t-fast);
  padding: 4px 6px;
  background: none;
  border: none;
}

.announce-close:hover { color: rgba(255,255,255,0.9); }

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Adjust navbar to sit below announce bar */
body:has(.announce-bar[style*="none"]) .navbar { top: 0; }

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--clr-sand);
  border-top: 1px solid var(--clr-sand-dark);
  border-bottom: 1px solid var(--clr-sand-dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee-left 22s linear infinite;
  padding-left: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-sep {
  color: var(--clr-gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ---- HERO – FLOATING ORBS ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,195,74,0.35) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,133,74,0.28) 0%, transparent 70%);
  bottom: 5%; left: -8%;
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: orb-drift 9s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

/* ---- HERO GRAIN OVERLAY ---- */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ---- HERO EYEBROW – GLASSMORPHISM PILL ---- */
.hero-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: var(--space-md);
  animation: fade-up 0.8s 0.2s both;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(242,195,74,0.4); }
  50%      { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 6px rgba(242,195,74,0); }
}

.hero-eyebrow { margin-bottom: 0; }

/* ---- PRODUCT CARD – SHINE EFFECT ---- */
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 60%);
  background-size: 200% 200%;
  background-position: -100% -100%;
  transition: background-position 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover .product-img-wrap::after {
  background-position: 200% 200%;
}

/* ---- PRODUCT CARD – FANCY BORDER GLOW ON HOVER ---- */
.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(232,133,74,0.5), rgba(242,195,74,0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.product-card:hover::before { opacity: 1; }

/* Keep card content above the glow layer */
.product-img-wrap, .product-info { position: relative; z-index: 1; }

/* ---- ENHANCED TRUST BAR ---- */
.trust-bar {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--clr-sand) 100%);
  border-bottom: 1px solid var(--clr-border);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-lg) 0;
}

.trust-item {
  position: relative;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--t-base), transform var(--t-base);
}

.trust-item:hover {
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-sand) 0%, #fff 100%);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

/* ---- SPOTLIGHT SECTION ---- */
.spotlight {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-sand) 100%);
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,133,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.spotlight-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.spotlight-main { position: relative; }

.spotlight-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(44,36,22,0.18);
  aspect-ratio: 4/3;
}

.spotlight-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotlight-img-wrap:hover .spotlight-img { transform: scale(1.04); }

.spotlight-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(44,36,22,0.85);
  backdrop-filter: blur(10px);
  color: var(--clr-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(242,195,74,0.3);
}

/* Animated shimmer on spotlight image */
.spotlight-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.12) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: shine-sweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0%   { background-position: -200% 0; }
  50%  { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Spotlight info panel */
.spotlight-cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  display: block;
  margin-bottom: 12px;
}

.spotlight-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.spotlight-stars {
  font-size: 1.1rem;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.spotlight-stars span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 400;
  margin-left: 6px;
}

.spotlight-desc {
  font-size: 0.97rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.spotlight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.spotlight-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text);
  font-weight: 500;
}

.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--clr-pool);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.spotlight-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.spotlight-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-text);
}

.spotlight-price-old {
  font-size: 1rem;
  color: var(--clr-text-light);
  text-decoration: line-through;
  margin-left: 8px;
}

.spotlight-discount {
  display: inline-block;
  background: var(--clr-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  vertical-align: middle;
}

.spotlight-cart-btn {
  font-size: 1rem;
  padding: 1rem 1.8rem;
  gap: 10px;
}

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,133,74,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ---- ENHANCED SECTION EYEBROW ---- */
.section-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--grad-warm);
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* ---- ENHANCED CATEGORY BUTTONS ---- */
.cat-btn {
  box-shadow: 0 2px 16px rgba(44,36,22,0.06);
}

.cat-btn.active {
  box-shadow: 0 4px 24px rgba(232,133,74,0.35);
}

/* ---- ENHANCED PRODUCT CARD BUTTON ---- */
.btn-add-cart {
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-add-cart:hover::before { transform: translateX(100%); }

/* ---- ENHANCED FOOTER ---- */
.footer {
  background: linear-gradient(180deg, #1E160A 0%, #0E0A05 100%);
}

/* ---- ENHANCED NEWSLETTER ---- */
.newsletter {
  background: var(--clr-sand);
  position: relative;
  overflow: hidden;
}

.newsletter::before,
.newsletter::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.newsletter::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,133,74,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
}

.newsletter::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(242,195,74,0.1) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}

.newsletter-inner { position: relative; z-index: 1; }

/* ---- ENHANCED PROMO BANNER ---- */
.promo-banner {
  background: var(--grad-banner);
  position: relative;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.5;
  pointer-events: none;
}

/* ---- ENHANCED ABOUT VISUAL ---- */
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,133,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 1024px) {
  .spotlight-grid    { grid-template-columns: 1fr; gap: var(--space-xl); }
  .spotlight-name    { font-size: 2rem; }
  .spotlight-price   { font-size: 1.8rem; }
}

/* Mobile overrides for premium additions already covered in main @media blocks above */

/* ============================================================
   COOKIE BANNER
   ============================================================ */

/* ---- Banner (bottom bar) ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -8px 40px rgba(44, 36, 22, 0.12);
  /* Slide-up animation */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hiding {
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.cookie-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  animation: cookie-wobble 3s ease-in-out infinite;
}

@keyframes cookie-wobble {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.cookie-content {
  flex: 1;
  min-width: 0;
}

.cookie-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.cookie-text {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin: 0;
}

.cookie-link {
  color: var(--clr-primary);
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 2px;
}

.cookie-link:hover { color: var(--clr-primary-dark); }

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Settings button */
.cookie-btn-settings {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--clr-text-muted);
  background: none;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.cookie-btn-settings:hover {
  border-color: var(--clr-text-muted);
  color: var(--clr-text);
  background: var(--clr-sand);
}

/* Reject button */
.cookie-btn-reject {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--clr-text-muted);
  background: none;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.cookie-btn-reject:hover {
  border-color: #c0392b;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.05);
}

/* Accept button */
.cookie-btn-accept {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--grad-warm);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 133, 74, 0.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 133, 74, 0.55);
}
.cookie-btn-accept:active { transform: translateY(0); }

/* ---- Cookie Modal Overlay ---- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.55);
  backdrop-filter: blur(6px);
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Cookie Settings Modal ---- */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: 3200;
  width: min(560px, calc(100vw - 2rem));
  max-height: calc(100svh - 3rem);
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(44, 36, 22, 0.22), 0 0 0 1px rgba(44,36,22,0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.cookie-modal:not([hidden]) {
  display: flex;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal header */
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--clr-border);
}
.cookie-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cookie-modal-icon { font-size: 1.4rem; }
.cookie-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-text);
}
.cookie-modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--clr-text-muted);
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}
.cookie-modal-close:hover { background: var(--clr-sand); color: var(--clr-text); }

/* Modal body */
.cookie-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cookie-modal-intro {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Cookie category rows */
.cookie-category {
  border-bottom: 1px solid var(--clr-border);
  padding: 1.1rem 0;
}
.cookie-category:last-child { border-bottom: none; }

.cookie-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-category-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.cookie-cat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.dot-required  { background: var(--clr-pool); }
.dot-analytics { background: var(--clr-gold); }
.dot-marketing { background: var(--clr-primary); }
.dot-comfort   { background: #8e44ad; }

.cookie-category-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* "Always on" label */
.cookie-toggle-wrap { flex-shrink: 0; }
.cookie-always-on {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-pool);
  background: rgba(50, 130, 184, 0.1);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  white-space: nowrap;
}

/* Toggle switch */
.cookie-toggle {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  cursor: pointer;
  margin-top: 2px;
}
.cookie-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-border);
  border-radius: 26px;
  transition: background 0.3s ease;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-toggle-input:checked ~ .cookie-toggle-slider {
  background: var(--grad-warm);
}
.cookie-toggle-input:checked ~ .cookie-toggle-slider::before {
  transform: translateX(20px);
}
.cookie-toggle-input:focus-visible ~ .cookie-toggle-slider {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

/* Modal footer */
.cookie-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-sand);
  flex-wrap: wrap;
}
.cookie-modal-footer-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.cookie-modal-reject {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--clr-text-muted);
  background: none;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.cookie-modal-reject:hover { border-color: #c0392b; color: #c0392b; }

.cookie-modal-save {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  background: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.cookie-modal-save:hover { background: var(--clr-primary); color: #fff; }

.cookie-modal-accept-all {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--grad-warm);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(232, 133, 74, 0.38);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.cookie-modal-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 133, 74, 0.5);
}

/* ---- COOKIE BANNER – Mobile ---- */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .cookie-icon { font-size: 1.8rem; }

  .cookie-title { font-size: 0.95rem; }

  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .cookie-btn-accept {
    grid-column: 1 / -1; /* Full width */
    text-align: center;
    justify-content: center;
    padding: 0.8rem;
  }

  .cookie-btn-settings,
  .cookie-btn-reject {
    text-align: center;
    padding: 0.65rem 0.75rem;
  }

  .cookie-modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .cookie-modal-footer-right {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cookie-modal-reject,
  .cookie-modal-save,
  .cookie-modal-accept-all {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
  }
}

/* Mobile overrides for premium additions already covered in main @media blocks above */
