/* ============================================================
   ANNAAADAI — South Indian Heritage Wear
   Design System: Temple Gold + Deep Maroon + Ivory
   Completely unique design — luxury ethnic fashion
   ============================================================ */

/* --- Font Faces --- */
@font-face { font-family: 'Inter'; src: url('fonts/inter-light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* --- CSS Variables --- */
:root {
  --maroon: #6B1D2A;
  --maroon-deep: #4A0E1C;
  --maroon-light: #8B2E3F;
  --gold: #C5963A;
  --gold-light: #D4AF5B;
  --gold-pale: #F0E0B8;
  --ivory: #FDF8F0;
  --ivory-dark: #F5EDE0;
  --charcoal: #1E1E1E;
  --slate: #3A3A3A;
  --muted: #7A7068;
  --border: #E8DDD0;
  --white: #FFFFFF;
  --success: #2D7A4F;
  --danger: #C0392B;
  --shadow-sm: 0 2px 8px rgba(107,29,42,0.06);
  --shadow-md: 0 4px 20px rgba(107,29,42,0.10);
  --shadow-lg: 0 8px 40px rgba(107,29,42,0.14);
  --shadow-gold: 0 4px 20px rgba(197,150,58,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* --- 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);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--maroon-deep); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--slate); margin-bottom: 1rem; }
.text-gold { color: var(--gold); }
.text-maroon { color: var(--maroon); }
.text-muted { color: var(--muted); }

/* --- Utility --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-header .section-tag::before,
.section-header .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-header .section-tag::before { left: -20px; }
.section-header .section-tag::after { right: -20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}

/* ============================================================
   NAVIGATION — Top bar + Main nav
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(107,29,42,0.08);
}
.nav-top-bar {
  background: var(--maroon-deep);
  color: var(--gold-pale);
  font-size: 0.78rem;
  padding: 8px 0;
  letter-spacing: 0.5px;
}
.nav-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-top-bar a { color: var(--gold-pale); }
.nav-top-bar a:hover { color: var(--gold-light); }
.nav-top-bar i { margin-right: 6px; }

.nav-main {
  padding: 16px 0;
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,221,208,0.5);
}
.nav-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 52px; width: auto; border-radius: 0; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--maroon-deep);
  letter-spacing: 0.5px;
}
.nav-logo-text span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: -2px;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--maroon); }
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions a {
  color: var(--slate);
  font-size: 1.15rem;
  position: relative;
}
.nav-actions a:hover { color: var(--maroon); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--maroon); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — Full-screen cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--maroon-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,14,28,0.88) 0%, rgba(74,14,28,0.45) 50%, rgba(0,0,0,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin-left: 8%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(197,150,58,0.3);
  border-radius: 30px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(197,150,58,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197,150,58,0.4);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-maroon {
  background: var(--maroon);
  color: var(--white);
}
.btn-maroon:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
}
.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
}
.btn-outline-maroon:hover {
  background: var(--maroon);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 55px; }
}

/* ============================================================
   MARQUEE BANNER
   ============================================================ */
.marquee-banner {
  background: var(--maroon-deep);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  color: var(--gold-pale);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  flex-shrink: 0;
}
.marquee-track span::after {
  content: '\2726';
  margin-left: 40px;
  color: var(--gold);
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORY SHOWCASE
   ============================================================ */
.categories-section { background: var(--white); }
.category-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,14,28,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.category-card-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.category-card-overlay span {
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-section { background: var(--ivory); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ivory-dark);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-badge.new { background: var(--gold); }
.product-badge.sale { background: var(--danger); }
.product-actions {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 8px;
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-actions button {
  background: var(--white);
  color: var(--maroon);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.product-actions button:hover {
  background: var(--maroon);
  color: var(--white);
}
.product-actions .btn-quick-view {
  width: auto;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.product-card-info { padding: 18px 20px; }
.product-card-info .product-category {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card-info .product-price .current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--maroon);
}
.product-card-info .product-price .original {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card-info .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.product-card-info .product-rating i { color: var(--gold); font-size: 0.75rem; }
.product-card-info .product-rating span { font-size: 0.78rem; color: var(--muted); margin-left: 4px; }

/* ============================================================
   HERITAGE BANNER — Full-width parallax
   ============================================================ */
.heritage-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.heritage-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,14,28,0.9) 0%, rgba(74,14,28,0.6) 100%);
}
.heritage-banner .container { position: relative; z-index: 2; }
.heritage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.heritage-text h2 { color: var(--white); margin-bottom: 20px; }
.heritage-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.8; }
.heritage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.heritage-stat {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(197,150,58,0.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
}
.heritage-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.heritage-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   LOOKBOOK / COLLECTION GRID
   ============================================================ */
.lookbook-section { background: var(--white); }
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.lookbook-item:first-child { grid-row: span 2; }
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lookbook-item:hover img { transform: scale(1.06); }
.lookbook-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.lookbook-item:hover .lookbook-item-overlay { opacity: 1; }
.lookbook-item-overlay h4 { color: var(--white); font-size: 1.2rem; }

/* ============================================================
   BRAND STORY SECTION
   ============================================================ */
.brand-story-section { background: var(--ivory-dark); }
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.brand-story-img img { width: 100%; height: auto; }
.brand-story-img::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}
.brand-story-text .story-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-pale);
}
.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold-pale);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--muted);
}
.testimonial-stars { margin-bottom: 12px; }
.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features-section { background: var(--ivory); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-pale);
}
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--maroon);
}
.feature-card h4 { margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0; }

/* ============================================================
   NEWSLETTER / CTA
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  padding: 80px 0;
}
.newsletter-content { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-content h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-content p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-section { background: var(--ivory-dark); }
.lead-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,150,58,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-top: 16px; }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-brand .footer-logo img { height: 44px; border-radius: 0; object-fit: contain; }
.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .footer-logo-text span { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col ul li a i { margin-right: 8px; width: 16px; color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
  width: 16px;
}
.footer-contact-item span { font-size: 0.88rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--slate);
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--maroon); color: var(--white); }
.modal-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.modal-details .product-category {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-details h2 {
  font-size: 1.6rem;
  color: var(--maroon-deep);
  margin-bottom: 12px;
}
.modal-details .modal-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.modal-details .modal-price .current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon);
}
.modal-details .modal-price .original {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.modal-details .modal-price .discount {
  font-size: 0.78rem;
  background: rgba(197,150,58,0.15);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.modal-details .modal-desc {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}
.modal-details .modal-features { margin-bottom: 24px; }
.modal-details .modal-features li {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-details .modal-features li i { color: var(--gold); font-size: 0.8rem; }
.modal-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-qty label { font-size: 0.85rem; font-weight: 600; }
.modal-qty .qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.modal-qty .qty-controls button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--maroon);
  transition: var(--transition);
}
.modal-qty .qty-controls button:hover { background: var(--ivory); }
.modal-qty .qty-controls input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-weight: 600;
  background: transparent;
}
.modal-btns { display: flex; gap: 12px; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  text-align: center;
}
.shop-hero h1 { color: var(--white); margin-bottom: 8px; }
.shop-hero p { color: rgba(255,255,255,0.7); }
.shop-hero .breadcrumb { margin-top: 16px; }
.shop-hero .breadcrumb a { color: var(--gold-light); font-size: 0.85rem; }
.shop-hero .breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 60px 0;
}
.shop-sidebar { position: sticky; top: 120px; align-self: start; }
.filter-group { margin-bottom: 30px; }
.filter-group h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--slate);
  padding: 6px 0;
  cursor: pointer;
}
.filter-group input[type="checkbox"] { accent-color: var(--maroon); }
.filter-group input[type="range"] { width: 100%; accent-color: var(--gold); }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.shop-toolbar .result-count { font-size: 0.88rem; color: var(--muted); }
.shop-toolbar select {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.85rem;
  color: var(--charcoal);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  text-align: center;
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 12px auto 0; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-pale);
  transform: translateY(-4px);
}
.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--maroon);
}

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-pale));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
}
.timeline-item .year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-info-card {
  padding: 24px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
}
.contact-info-card i {
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 10px;
  display: block;
}
.contact-info-card h5 {
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-info-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0; }
.contact-info-card a { color: var(--maroon); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-item-info img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-item-info h4 { font-size: 0.95rem; }
.cart-item-info span { font-size: 0.8rem; color: var(--muted); }
.cart-remove { color: var(--danger); font-size: 0.85rem; cursor: pointer; }
.cart-remove:hover { text-decoration: underline; }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cart-summary h3 { margin-bottom: 20px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.cart-summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--maroon);
  border-bottom: none;
  padding-top: 16px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}
.checkout-form-section {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.checkout-order-summary {
  background: var(--ivory-dark);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: sticky;
  top: 120px;
  align-self: start;
}

/* ============================================================
   TRACK ORDER
   ============================================================ */
.track-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.track-timeline { max-width: 500px; margin: 40px auto 0; }
.track-step {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  position: relative;
}
.track-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.track-step:last-child::before { display: none; }
.track-step.active::before { background: var(--gold); }
.track-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
}
.track-step.active .track-step-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.track-step.completed .track-step-icon {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  text-align: center;
}
.policy-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.policy-hero p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--maroon);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 10px;
}
.policy-content p { font-size: 0.92rem; line-height: 1.8; }
.policy-content ul { padding-left: 20px; margin-bottom: 16px; }
.policy-content ul li {
  font-size: 0.92rem;
  color: var(--slate);
  padding: 4px 0;
  list-style: disc;
}
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}
.policy-content table th {
  background: var(--maroon);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.policy-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.policy-content table tr:nth-child(even) { background: var(--ivory); }
.policy-summary {
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory));
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 30px;
}
.policy-summary h4 { color: var(--maroon); margin-bottom: 8px; }
.policy-summary p { margin-bottom: 0; }
.policy-contact {
  background: var(--ivory-dark);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-top: 40px;
  border: 1px solid var(--border);
}
.policy-contact h3 { margin-top: 0; }

.refund-steps { counter-reset: step; margin: 20px 0; }
.refund-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  align-items: flex-start;
}
.refund-step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--maroon-deep); transform: translateY(-3px); }

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-consent.show { display: flex; }
.cookie-consent a { color: var(--gold-light); text-decoration: underline; }
.cookie-consent .btn { flex-shrink: 0; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 220px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

  .hero-content { margin-left: 0; text-align: center; }
  .hero-btns { justify-content: center; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .brand-story-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-item:first-child { grid-row: span 1; }
  .heritage-stats { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }

  .modal { grid-template-columns: 1fr; }
  .modal-img { aspect-ratio: 1/1; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-wrapper { padding: 30px 20px; }
  .checkout-form-section { padding: 24px; }

  .section-padding { padding: 60px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-card { flex: 0 0 240px; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cart-item-info img { width: 60px; height: 75px; }
  .modal-details { padding: 24px; }
}

/* ============================================================
   LOADING ANIMATION
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gold-pale);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty States */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}
.empty-state i {
  font-size: 3rem;
  color: var(--gold-pale);
  margin-bottom: 20px;
}
.empty-state h3 { margin-bottom: 12px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  animation: toastSlide 0.3s ease;
  min-width: 280px;
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast i { font-size: 1.1rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }
@keyframes toastSlide {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
