/* ============================================
   LUXE HAVEN — Design System
   Palette: Monochrome Luxe + Gold
   Fonts: Cormorant Garamond + Plus Jakarta Sans
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --black: #0A0A0A;
  --dark: #141414;
  --dark-2: #1E1E1E;
  --dark-3: #2A2A2A;
  --mid: #555555;
  --light-mid: #888888;
  --light: #CCCCCC;
  --off-white: #F5F5F0;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A07830;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
  --announcement-height: 36px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.desktop-only { display: inline; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--black);
  color: var(--gold-light);
  height: var(--announcement-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}

.announcement-track span { flex-shrink: 0; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark-3);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-icon-btn:hover {
  background: var(--off-white);
  color: var(--black);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--transition), transform var(--transition);
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 16px 24px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open { max-height: 400px; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-3);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold); }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

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

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.cart-drawer-header h3 span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--light-mid);
  margin-left: 6px;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mid);
  transition: background var(--transition);
}

.cart-close:hover { background: var(--off-white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--light-mid);
  text-align: center;
  padding: 40px 0;
}

.cart-empty svg { opacity: 0.3; }
.cart-empty p { font-size: 16px; font-weight: 500; color: var(--mid); }
.cart-empty span { font-size: 13px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

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

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--mid);
  transition: all var(--transition);
}

.qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.qty-value { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-item-remove {
  color: var(--light-mid);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
  align-self: flex-start;
  margin-top: 2px;
}

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

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.cart-shipping-note {
  font-size: 12px;
  color: var(--light-mid);
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 10px;
}

.btn-checkout:hover { background: var(--dark-3); transform: translateY(-1px); }

.btn-continue {
  width: 100%;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
}

.btn-continue:hover { color: var(--black); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid var(--black);
}

.btn-primary:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-primary.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-primary.btn-light:hover {
  background: var(--off-white);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--black);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,0.2);
  transition: all var(--transition);
}

.btn-outline-dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 80px 80px 80px;
  gap: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #C9A84C 0%, transparent 70%);
  bottom: -100px;
  left: 200px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-noise {
  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.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 580px;
}

.hero-card-float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.hero-card-1 {
  width: 340px;
  height: 420px;
  top: 0;
  right: 0;
  animation: float1 6s ease-in-out infinite;
}

.hero-card-2 {
  width: 220px;
  height: 260px;
  bottom: 40px;
  left: 0;
  animation: float2 7s ease-in-out infinite;
}

.hero-card-3 {
  width: 160px;
  height: 160px;
  top: 80px;
  left: 60px;
  animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(0.5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

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

.hero-tag-float {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: float3 4s ease-in-out infinite;
  z-index: 10;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 12px;
  color: var(--mid);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  padding: 100px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

.category-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 576px;
}

.category-card img {
  transition: transform 0.6s ease;
}

.category-card:hover img { transform: scale(1.06); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.category-overlay h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.category-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRODUCTS
   ============================================ */
.featured-products {
  padding: 100px 0;
  background: var(--off-white);
}

.product-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--off-white);
}

.product-img-wrap img {
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-new { background: var(--black); color: var(--white); }
.badge-sale { background: #e53e3e; color: var(--white); }
.badge-bestseller { background: var(--gold); color: var(--white); }

.product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-3);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.product-action-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.1);
}

.product-info { padding: 18px 20px 20px; }

.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.product-stars { color: var(--gold); font-size: 12px; }
.product-review-count { font-size: 11px; color: var(--light-mid); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.product-price-original {
  font-size: 13px;
  color: var(--light-mid);
  text-decoration: line-through;
}

.product-add-btn {
  padding: 9px 16px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.product-add-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.load-more-wrap { text-align: center; }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}

.promo-content {
  background: var(--dark);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.promo-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.promo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.promo-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.promo-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.7;
}

.promo-visual {
  position: relative;
  overflow: hidden;
}

.promo-visual img {
  transition: transform 0.8s ease;
}

.promo-banner:hover .promo-visual img { transform: scale(1.04); }

/* ============================================
   BESTSELLERS
   ============================================ */
.bestsellers {
  padding: 100px 0;
  background: var(--white);
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bestseller-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
  animation: fadeUp 0.5s ease both;
}

.bestseller-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.bestseller-rank {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(0,0,0,0.08);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
}

.bestseller-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
}

.bestseller-info { flex: 1; }

.bestseller-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.bestseller-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.bestseller-stars { color: var(--gold); font-size: 11px; }

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--off-white);
  max-width: 100%;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius-xl);
  height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.about-badge span {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.value-item p {
  font-size: 13px;
  color: var(--mid);
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--black);
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.5); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

.rating-summary strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.rating-summary span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.testimonial-carousel-wrap { position: relative; }

.testimonial-carousel {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 56px 80px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 40px 36px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-featured {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.04);
}

.pricing-featured:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.pricing-featured .pricing-tier { color: var(--white); }

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-top: 8px;
}

.pricing-featured .price-currency { color: var(--white); }

.price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.pricing-featured .price-amount { color: var(--white); }

.price-period {
  font-size: 14px;
  color: var(--mid);
  align-self: flex-end;
  margin-bottom: 8px;
}

.pricing-featured .price-period { color: rgba(255,255,255,0.5); }

.pricing-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.pricing-featured .pricing-desc {
  color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-3);
}

.pricing-featured .pricing-features li { color: rgba(255,255,255,0.8); }

.check {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.check.muted { color: var(--light-mid); }
.pricing-featured .check.muted { color: rgba(255,255,255,0.2); }

.pricing-featured .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  width: 100%;
  justify-content: center;
}

.pricing-featured .btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 100px 24px;
  background: var(--off-white);
  text-align: center;
}

.newsletter-content { max-width: 560px; margin: 0 auto; }

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.15;
}

.newsletter-content p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 32px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--light-mid); }

.newsletter-note {
  font-size: 12px;
  color: var(--light-mid);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-links-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-links-group a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 80px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold-light); }

.footer-payments {
  display: flex;
  gap: 8px;
}

.footer-payments span {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 860px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  z-index: 1400;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-view-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  z-index: 10;
  transition: all var(--transition);
}

.modal-close:hover { background: var(--black); color: var(--white); }

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img {
  height: 480px;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  overflow: hidden;
}

.modal-details {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
}

.modal-rating .stars { font-size: 14px; }

.modal-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.modal-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.modal-add-btn {
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-top: auto;
}

.modal-add-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.toast svg { color: var(--gold); }

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-visual { display: none; }
  .hero-scroll-hint { left: 40px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.08); }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-large {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 320px;
  }

  .products-grid { grid-template-columns: repeat(3, 1fr); }

  .promo-banner { grid-template-columns: 1fr; }
  .promo-visual { height: 300px; }

  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }

  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 48px;
  }

  .about-badge { right: 0; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-featured { transform: scale(1); }
  .pricing-featured:hover { transform: translateY(-4px); }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 60px 40px;
    gap: 40px;
  }

  .footer-bottom { padding: 24px 40px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .desktop-only { display: none; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero { padding: 60px 24px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { text-align: center; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-scroll-hint { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { border-right: none !important; padding: 0; }

  .categories { padding: 60px 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-large { grid-column: 1; min-height: 280px; }
  .category-card { height: 220px; }

  .featured-products { padding: 60px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-img-wrap { height: 200px; }

  .promo-content { padding: 48px 24px; }

  .bestsellers { padding: 60px 0; }
  .bestsellers-grid { grid-template-columns: 1fr; }

  .about-section { padding: 60px 24px; }
  .about-visual img { height: 360px; }
  .about-badge { display: none; }

  .testimonials { padding: 60px 0; }
  .testimonial-card { padding: 36px 28px; }

  .pricing { padding: 60px 0; }

  .newsletter { padding: 60px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-primary { justify-content: center; }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
  }

  .modal-content { grid-template-columns: 1fr; }
  .modal-img { height: 280px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .modal-details { padding: 28px 24px; }

  .section-header { margin-bottom: 36px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .product-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 11px; }
}