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

:root {
  --white:        #FFFFFF;
  --bg:           #F9FAFB;
  --bg-soft:      #F3F4F6;
  --border:       #E5E7EB;
  --border-dark:  #D1D5DB;

  --text:         #1F2937;
  --text-mid:     #374151;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;

  --accent:       #2563EB;
  --accent-dark:  #1D4ED8;
  --accent-mid:   #3B82F6;
  --accent-light: #EFF6FF;
  --accent-bdr:   #BFDBFE;

  --success:      #059669;
  --success-bg:   #ECFDF5;
  --warning:      #D97706;
  --warning-bg:   #FFFBEB;
  --danger:       #DC2626;

  --shadow-xs:    0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md:    0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-lg:    0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-xl:    0 25px 50px -12px rgba(0,0,0,.15);

  --r-sm:   6px;
  --r:      10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --nav-h:  68px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --t: 180ms ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select { font-family: var(--font); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-heading { margin-bottom: 0.5rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; line-height: 1.65; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1280px) { .container { padding: 0 40px; } }

section { padding: 88px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text-mid); color: var(--text); background: var(--bg-soft); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-icon { padding: 10px; }

.btn-dark {
  background: var(--text);
  color: var(--white);
}
.btn-dark:hover { background: #111827; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-blue   { background: var(--accent-light); color: var(--accent); }
.badge-green  { background: var(--success-bg); color: var(--success); }
.badge-amber  { background: var(--warning-bg); color: var(--warning); }
.badge-dark   { background: var(--text); color: var(--white); }

/* ===== STARS ===== */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 0.85rem;
}
.stars-count { color: var(--text-muted); font-size: 0.82rem; margin-left: 4px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-logo img { display: block; }
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t), background var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg-soft); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t), background var(--t);
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-dropdown-toggle svg { transition: transform var(--t); }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t);
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: background var(--t), color var(--t);
}
.nav-dropdown-item:hover { background: var(--accent-light); color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  color: var(--text-muted);
  transition: color var(--t), background var(--t);
}
.nav-icon-btn:hover { color: var(--text); background: var(--bg-soft); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  color: var(--text);
}

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background var(--t);
}
.nav-mobile-link:hover { background: var(--bg-soft); }

@media (max-width: 768px) {
  .nav-links, .nav-search { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* Search bar */
.nav-search {
  position: relative;
  flex: 0 1 260px;
}
.nav-search input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.nav-search input:focus {
  border-color: var(--accent-bdr);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.nav-search input::placeholder { color: var(--text-light); }
.nav-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, #F8FAFF 0%, #EFF4FF 40%, #F4F7FF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 65% 35%, rgba(37,99,235,.08) 0%, transparent 55%),
    radial-gradient(circle at 25% 70%, rgba(99,102,241,.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; }
.hero-label { margin-bottom: 20px; }
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stats > div {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid var(--border);
  margin-right: 24px;
}
.hero-stats > div:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 2px;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 500px;
  min-width: 0;
}
.hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  min-width: 0;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img:first-child {
  grid-row: 1 / 3;
  border-radius: var(--r-xl);
}
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: -12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  z-index: 2;
}
.hero-img-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.hero-img-badge-text strong { display: block; font-size: 0.85rem; color: var(--text); }
.hero-img-badge-text span { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: calc(var(--nav-h) + 48px) 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 320px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.3rem; }
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,35,.85) 0%, rgba(10,18,35,.2) 55%, transparent 100%);
  transition: background 300ms ease;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(10,18,35,.9) 0%, rgba(10,18,35,.35) 60%, transparent 100%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  color: var(--white);
}
.category-card-content h3 { font-size: 1rem; margin-bottom: 4px; }
.category-card-content p { font-size: 0.78rem; opacity: 0.75; line-height: 1.4; }
.category-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(6px) scale(0.9);
  transition: opacity 250ms ease, transform 250ms ease;
}
.category-card:hover .category-card-arrow { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 600px)  { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ===== PRODUCT CARD ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

/* Shop page: sidebar takes ~260px so cap at 3 cols */
.shop-main .product-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px)  { .shop-main .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .shop-main .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
  transition: transform 280ms ease, box-shadow 280ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
}
.product-card-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 1;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-action {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-md);
  transition: color var(--t), background var(--t);
}
.product-card-action:hover { color: var(--accent); background: var(--white); }

.product-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}
.product-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-card-rating { display: flex; align-items: center; margin-bottom: 14px; }

.product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.product-card-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.price-current { font-size: 1.05rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.price-original { font-size: 0.78rem; color: var(--text-light); text-decoration: line-through; }
.price-sale { color: var(--danger); }
.product-card-btn {
  width: 100%;
  padding: 11px 16px;
  font-size: 0.85rem;
  border-radius: var(--r-md);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.product-card-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
}

/* ===== VALUE PROPS ===== */
.values-section { background: var(--bg-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: none;
  border-radius: var(--r-xl);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
  transition: box-shadow 280ms ease, transform 280ms ease;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ===== INSPIRATION STRIP ===== */
.inspiration-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 16px;
}
.inspiration-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.inspiration-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.inspiration-item:hover img { transform: scale(1.04); }
.inspiration-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 900px) { .inspiration-row { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; } }
@media (max-width: 480px) { .inspiration-row { grid-template-columns: 1fr; grid-template-rows: 200px; } }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--text); color: var(--white); }
.testimonials-section .label { color: #93C5FD; }
.testimonials-section .section-heading { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: background 250ms ease, border-color 250ms ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}
.testimonial-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin: 16px 0 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-location { font-size: 0.78rem; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--accent-light);
  border-top: 1px solid var(--accent-bdr);
  border-bottom: 1px solid var(--accent-bdr);
  padding: 64px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text h2 { font-size: 1.6rem; margin-bottom: 8px; }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter-form input {
  width: 280px;
  height: 46px;
  padding: 0 16px;
  border: 1.5px solid var(--accent-bdr);
  border-radius: var(--r);
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.newsletter-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
@media (max-width: 800px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; max-width: 400px; }
  .newsletter-form input { width: 100%; }
}

/* ===== FOOTER ===== */
footer {
  background: #0F172A;
  color: rgba(255,255,255,.6);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 12px; }
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
}
.footer-logo img { display: block; }
.footer-logo span { color: var(--accent-mid); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.875rem; transition: color var(--t); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.82rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-payment { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: linear-gradient(135deg, #F8FAFF 0%, #EFF4FF 100%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 2rem; margin-bottom: 8px; }
.page-header p { color: var(--text-muted); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-light); }

/* ===== SHOP PAGE ===== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--white);
  border: none;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
}
.sidebar-section { margin-bottom: 32px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.filter-list { display: flex; flex-direction: column; gap: 3px; }
.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  font-size: 0.875rem;
  font-weight: 500;
}
.filter-item:hover { background: var(--bg-soft); }
.filter-item.active { background: var(--accent-light); color: var(--accent); font-weight: 600; }
.filter-count {
  font-size: 0.7rem;
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-weight: 600;
}
.filter-item.active .filter-count { background: var(--accent-bdr); color: var(--accent); }

.price-range { display: flex; gap: 8px; }
.price-input {
  flex: 1;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--t);
}
.price-input:focus { border-color: var(--accent); }

.shop-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-results-count { font-size: 0.875rem; color: var(--text-muted); }
.shop-sort select {
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: calc(var(--nav-h) + 20px); }
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-soft);
  transition: border-color var(--t);
  flex-shrink: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--accent); }

/* Product info */
.product-info-col {}
.product-info-breadcrumb { margin-bottom: 16px; }
.product-info-header { margin-bottom: 20px; }
.product-info-header h1 { font-size: 1.8rem; margin-bottom: 8px; }
.product-info-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.product-sku { font-size: 0.8rem; color: var(--text-muted); }
.product-info-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
}
.price-main { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.price-was { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.price-save { font-size: 0.8rem; background: #FEF2F2; color: var(--danger); padding: 3px 8px; border-radius: var(--r-full); font-weight: 600; }
.product-short-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

/* Options */
.option-group { margin-bottom: 20px; }
.option-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 10px; }
.option-label span { font-weight: 600; color: var(--text); text-transform: none; letter-spacing: 0; }
.option-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.option-pill {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  background: var(--white);
  color: var(--text-mid);
}
.option-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.option-pill.selected { border-color: var(--accent); background: var(--accent); color: var(--white); }

/* Qty + ATC */
.add-to-cart-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  height: 50px;
}
.qty-btn {
  width: 44px;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.qty-btn:hover { background: var(--border); color: var(--text); }
.qty-value {
  width: 56px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  height: 100%;
  outline: none;
}
.btn-atc {
  flex: 1;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-atc:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-wishlist {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--t);
}
.btn-wishlist:hover { border-color: #EF4444; color: #EF4444; background: #FEF2F2; }
.btn-wishlist.active { border-color: #EF4444; color: #EF4444; background: #FEF2F2; }

.product-assurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.assurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
}
.assurance-item svg { color: var(--success); flex-shrink: 0; }

/* Tabs */
.product-tabs { margin-top: 0; }
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--t), border-color var(--t);
  cursor: pointer;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p, .tab-panel li { color: var(--text-muted); line-height: 1.75; font-size: 0.925rem; }
.tab-panel ul, .tab-panel ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; list-style: initial; }
.tab-panel ol { list-style: decimal; }
.tab-panel p + p { margin-top: 12px; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--bg-soft); }
.specs-table td {
  padding: 11px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.specs-table td:first-child { font-weight: 600; color: var(--text); width: 40%; }
.specs-table td:last-child { color: var(--text-muted); }

.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-item {
  padding: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.review-author { font-weight: 700; font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.review-body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) {
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; padding-top: calc(var(--nav-h) + 24px); }
  .gallery { position: static; }
  .product-assurances { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .product-info-header h1 { font-size: 1.4rem; }
  .add-to-cart-row { flex-wrap: wrap; }
  .btn-atc { min-width: 100%; order: 3; }
  .product-assurances { grid-template-columns: 1fr; }
}

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.cart-items-section {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-size: 1.1rem; }
.cart-clear { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; transition: color var(--t); }
.cart-clear:hover { color: var(--danger); }
.cart-empty {
  padding: 64px 24px;
  text-align: center;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.cart-empty h3 { margin-bottom: 8px; }
.cart-empty p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 88px;
  height: 88px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info {}
.cart-item-name { font-weight: 600; font-size: 0.925rem; margin-bottom: 4px; }
.cart-item-option { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--t);
}
.cart-qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-qty-num { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-price { font-weight: 700; font-size: 1rem; }
.cart-item-remove { font-size: 0.78rem; color: var(--text-light); cursor: pointer; transition: color var(--t); }
.cart-item-remove:hover { color: var(--danger); }

.cart-summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.cart-summary h3 { font-size: 1rem; margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}
.cart-checkout-btn {
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  transition: background var(--t), transform var(--t);
}
.cart-checkout-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cart-continue { display: block; text-align: center; margin-top: 12px; font-size: 0.82rem; color: var(--accent); }
.cart-continue:hover { text-decoration: underline; }
.cart-trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding: 12px; background: var(--success-bg); border-radius: var(--r); font-size: 0.78rem; color: var(--success); font-weight: 500; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary { position: static; } }
@media (max-width: 480px) { .cart-item { grid-template-columns: 64px 1fr; } .cart-item-right { display: none; } }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--text);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
  animation: toastIn 280ms ease forwards;
  max-width: 320px;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.info    { border-left: 3px solid var(--accent); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ===== MISC ===== */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.divider { height: 1px; background: var(--border); margin: 0; }

.skeleton {
  background: linear-gradient(90deg, var(--bg-soft) 25%, var(--border) 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r);
}
@keyframes shimmer { to { background-position: -200% 0; } }

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.no-results h3 { margin-bottom: 8px; color: var(--text); }

/* ===== HERO DARK THEME ===== */
.hero {
  background: linear-gradient(140deg, #080F1E 0%, #0D1B35 50%, #080F1E 100%);
}
.hero::before {
  background-image:
    radial-gradient(circle at 65% 30%, rgba(59,130,246,.14) 0%, transparent 55%),
    radial-gradient(circle at 20% 75%, rgba(99,102,241,.1) 0%, transparent 45%);
}
.hero .label { color: #93C5FD; }
.hero h1 { color: #ffffff; }
.hero-sub { color: rgba(255,255,255,.65); }
.hero-stats { border-top-color: rgba(255,255,255,.1); }
.hero-stats > div { border-right-color: rgba(255,255,255,.1); }
.hero-stat-num { color: #ffffff; }
.hero-stat-label { color: rgba(255,255,255,.5); }

/* Glass button — for use on dark backgrounds */
.btn-glass {
  background: rgba(255,255,255,.1);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.38);
  transform: translateY(-1px);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-items::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 22px;
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-icon { font-size: 0.95rem; }
.trust-divider {
  width: 1px;
  height: 17px;
  background: var(--border-dark);
  flex-shrink: 0;
}
@media (max-width: 768px) { .trust-items { justify-content: flex-start; } }

/* ===== COLLECTION SPOTLIGHT ===== */
.collection-spotlight {
  background: linear-gradient(140deg, #080F1E 0%, #0D1B35 60%, #080F1E 100%);
  overflow: hidden;
  padding: 0;
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: center;
  gap: 60px;
  padding: 88px 0;
}
.spotlight-content h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin: 14px 0 20px;
  line-height: 1.15;
}
.spotlight-content > p {
  color: rgba(255,255,255,.66);
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 420px;
}
.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
.spotlight-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.spotlight-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  color: white;
  flex-shrink: 0;
}
.spotlight-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 32px 72px rgba(0,0,0,.5);
}
.spotlight-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-product-cards {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spotlight-product-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 13px 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: transform var(--t), box-shadow var(--t);
  display: block;
}
.spotlight-product-card:hover { transform: translateY(-2px); box-shadow: 0 14px 42px rgba(0,0,0,.32); }
@media (max-width: 900px) {
  .spotlight-inner { grid-template-columns: 1fr; gap: 36px; min-height: auto; }
  .spotlight-visual { aspect-ratio: 16/9; }
}
@media (max-width: 560px) {
  .spotlight-product-cards { grid-template-columns: 1fr; }
}
