/* ============================================================
   Aanchal Saree — Store CSS
   Primary: #9D2449 | Gold: #C8A97E | Rose: #D4547E | Blush: #F5EDE0
   Playfair Display (headings) + DM Sans (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #9D2449;
  --primary-dark:  #7a1b38;
  --primary-light: #b8325a;
  --gold:          #C8A97E;
  --gold-light:    #dfc9a4;
  --gold-dark:     #a8844e;
  --rose:          #D4547E;
  --blush:         #F5EDE0;
  --blush-dark:    #ede0cc;
  --dark:          #1A0A10;
  --text:          #2a0e18;
  --muted:         #7a5a65;
  --white:         #ffffff;
  --border:        rgba(157,36,73,0.15);
  --shadow:        0 2px 24px rgba(157,36,73,0.08);
  --shadow-md:     0 4px 32px rgba(157,36,73,0.12);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    0.2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }
.serif { font-family: 'Playfair Display', serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 10px 48px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.announcement-close {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: var(--white);
  font-size: 18px; cursor: pointer; opacity: 0.7; line-height: 1;
}
.announcement-close:hover { opacity: 1; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.site-logo span { color: var(--gold-light); }
.site-logo-img { display: flex; align-items: center; }
.site-logo-img img { height: 40px; max-width: 180px; width: auto; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); border-bottom-color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 8px; border-radius: 8px;
  transition: background var(--transition);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: var(--primary-dark);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.login-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 8px; cursor: pointer;
  transition: background var(--transition);
}
.login-btn:hover { background: rgba(255,255,255,0.22); }

.user-dropdown { position: relative; }
.user-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background var(--transition);
}
.user-btn:hover { background: rgba(255,255,255,0.2); }
.user-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.user-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); min-width: 180px;
  box-shadow: var(--shadow-md); padding: 8px 0;
  z-index: 200;
}
.user-menu[hidden] { display: none; }
.user-menu a {
  display: block; padding: 9px 16px;
  font-size: 13px; color: var(--text);
  transition: background var(--transition);
}
.user-menu a:hover { background: var(--blush); }
.user-menu hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.user-menu .text-danger { color: var(--primary); }
.user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Mobile nav */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); padding: 8px; border-radius: 8px;
}
.mobile-menu-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.mobile-nav {
  background: var(--primary-dark);
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: block; padding: 12px 24px;
  color: rgba(255,255,255,0.9); font-size: 15px;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); }
.mobile-nav hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 8px 0; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(26,10,16,0.85);
  display: flex; align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  backdrop-filter: blur(4px);
}
.search-overlay[hidden] { display: none; }
.search-form { width: 100%; max-width: 600px; position: relative; padding: 0 24px; }
.search-input {
  width: 100%; padding: 18px 56px 18px 24px;
  font-size: 18px; border: none; border-radius: 50px;
  background: var(--white); color: var(--text);
  outline: none;
}
.search-submit {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--primary); border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.search-submit svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; }
.search-close {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white);
  font-size: 32px; cursor: pointer; line-height: 1;
}

/* Cart sidebar */
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--white); z-index: 400;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.2);
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.cart-sidebar[hidden] {
  display: flex !important;
  transform: translateX(100%);
  pointer-events: none;
}
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
}
.cart-close {
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--muted); line-height: 1;
}
.cart-close:hover { color: var(--primary); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-loading { text-align: center; padding: 40px; color: var(--muted); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; stroke: var(--muted); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px; height: 90px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--primary); font-weight: 600; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 6px;
  border: 1px solid var(--border); background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background var(--transition);
}
.qty-btn:hover { background: var(--blush); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--muted); font-size: 12px; }
.cart-remove:hover { color: var(--primary); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-footer[hidden] { display: none; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 15px; }
.cart-total-row strong { font-size: 18px; color: var(--primary); }
.cart-note { font-size: 12px; color: var(--muted); margin-bottom: 16px; }

.overlay-backdrop {
  position: fixed; inset: 0; z-index: 390;
  background: rgba(26,10,16,0.5);
  backdrop-filter: blur(2px);
}
.overlay-backdrop[hidden] { display: none; }

/* ── Flash messages ─────────────────────────────────────────── */
.flash-container {
  position: fixed; top: 80px; right: 20px; z-index: 500;
  display: flex; flex-direction: column; gap: 8px;
  max-width: 340px;
}
.flash {
  padding: 14px 40px 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  position: relative; animation: slideIn 0.3s ease;
  box-shadow: var(--shadow-md);
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.flash-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.flash-error   { background: #f8d7da; color: #721c24; border-left: 4px solid var(--primary); }
.flash-info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }
.flash-warning { background: #fff3cd; color: #856404; border-left: 4px solid #ffc107; }
.flash-close {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 18px; opacity: 0.6; line-height: 1;
}
.flash-close:hover { opacity: 1; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-full { width: 100%; }
.btn + .btn { margin-top: 10px; }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── Section Headings ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}
.section-sub {
  color: var(--muted); font-size: 16px; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a0e18 0%, #5c1a30 40%, #9D2449 100%);
  padding: 64px 0;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 56px; align-items: stretch;
}
.hero-content {
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
  display: flex; flex-direction: column; justify-content: center;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,126,0.18);
  border: 1px solid rgba(200,169,126,0.35);
  color: var(--gold-light);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: '✦'; font-size: 10px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800; color: var(--white);
  line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.65; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Hero media panel — image lives here, never under the text */
.hero-media { position: relative; height: 100%; min-height: 360px; }
.hero-slider {
  position: relative; width: 100%; height: 100%; min-height: 360px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slider-dots {
  position: absolute; bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.45); padding: 0; transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--white); transform: scale(1.2); }
.hero-media-empty {
  position: relative; width: 100%; height: 100%; min-height: 360px;
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, rgba(200,169,126,0.15), rgba(157,36,73,0.25));
  border: 1px dashed rgba(200,169,126,0.4);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A97E' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Trust badges ─────────────────────────────────────────────── */
.trust-bar { background: var(--blush); border-bottom: 1px solid var(--blush-dark); }
.trust-bar .container { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-right: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.trust-item strong { color: var(--text); }

/* ── Fabric section ─────────────────────────────────────────── */
.fabric-section { padding: 80px 0; background: var(--white); }
.fabric-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.fabric-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3/4; cursor: pointer; transition: transform var(--transition);
}
.fabric-card:hover { transform: translateY(-4px); }
.fabric-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.fabric-card:hover .fabric-card-img { transform: scale(1.05); }
.fabric-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,16,0.85) 0%, rgba(26,10,16,0.2) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 24px;
}
.fabric-card-label { color: var(--white); }
.fabric-card-label h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.fabric-card-label p { font-size: 12px; color: var(--gold-light); margin-top: 2px; }

/* ── Product grid / cards ─────────────────────────────────────── */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.product-badge.sale { background: var(--rose); }
.product-badge.new  { background: var(--gold-dark); }
.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.wishlist-btn:hover { background: var(--white); }
.wishlist-btn svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wishlist-btn.active svg { fill: var(--primary); }
.product-info { padding: 16px; }
.product-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.product-desc { font-size: 12px; color: var(--muted); margin-bottom: 10px; line-height: 1.4; }
.product-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-price { font-weight: 700; font-size: 15px; color: var(--primary); }
.product-price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-discount { font-size: 11px; font-weight: 700; color: var(--rose); }
.add-to-cart-btn {
  width: 100%; padding: 10px;
  background: var(--primary); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background var(--transition);
}
.add-to-cart-btn:hover { background: var(--primary-dark); }
.add-to-cart-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.add-to-cart-btn:disabled,
.add-to-cart-btn.out-of-stock {
  background: var(--bg-soft, #f1f1f1); color: var(--muted);
  cursor: not-allowed; pointer-events: none;
}
.add-to-cart-btn:disabled:hover,
.add-to-cart-btn.out-of-stock:hover { background: var(--bg-soft, #f1f1f1); }

/* ── Occasion tabs ─────────────────────────────────────────── */
.occasion-section { padding: 80px 0; background: var(--blush); }
.occasion-tabs {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.occasion-tab {
  padding: 9px 20px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all var(--transition); color: var(--muted);
}
.occasion-tab:hover { border-color: var(--primary); color: var(--primary); }
.occasion-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── Sale / Teej banner ──────────────────────────────────────── */
.teej-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #c44080);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.teej-banner::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A97E' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.teej-content { position: relative; z-index: 1; }
.teej-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.teej-banner-headline { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); color: var(--white); font-weight: 800; margin-bottom: 16px; }
.teej-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--dark); font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: background var(--transition); }
.btn-gold:hover { background: var(--gold-light); }
.btn-gold svg { width: 16px; height: 16px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--blush); border: 1px solid var(--blush-dark);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: var(--gold); font-size: 16px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; }
.author-loc  { font-size: 12px; color: var(--muted); }

/* ── WhatsApp section ────────────────────────────────────────── */
.whatsapp-section { padding: 60px 0; background: var(--blush); text-align: center; }
.whatsapp-headline { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; }
.whatsapp-section p  { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: var(--white);
  font-size: 15px; font-weight: 700; padding: 14px 28px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: background var(--transition);
}
.wa-btn:hover { background: #1fb858; }
.wa-btn svg { width: 22px; height: 22px; fill: var(--white); }

/* Floating WhatsApp */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25D366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background var(--transition), transform var(--transition);
}
.floating-wa:hover { background: #1fb858; transform: scale(1.08); }
.floating-wa svg { width: 28px; height: 28px; fill: var(--white); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--gold-light); }
.footer-logo-img img { height: 36px; max-width: 180px; width: auto; object-fit: contain; }
.footer p { font-size: 13px; line-height: 1.7; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.social-link:hover { background: var(--primary); }
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Shop page ──────────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, #2a0e18, #9D2449);
  padding: 60px 0; color: var(--white); position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A97E'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 8px; }
.page-banner p  { color: rgba(255,255,255,0.75); font-size: 15px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { opacity: 0.5; }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 48px 0; }
.shop-sidebar { position: sticky; top: 80px; height: fit-content; }
.filter-panel { background: var(--blush); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.filter-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.filter-clear { font-size: 12px; color: var(--primary); cursor: pointer; font-weight: 500; background: none; border: none; }
.filter-group { margin-bottom: 24px; }
.filter-group-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.filter-option label { font-size: 13px; cursor: pointer; }
.price-range-inputs { display: flex; gap: 8px; align-items: center; }
.price-range-inputs input { width: 80px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; background: var(--white); }

.shop-main {}
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.product-count { font-size: 14px; color: var(--muted); }
.sort-select {
  padding: 8px 32px 8px 12px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a5a65' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  font-size: 14px; color: var(--text); cursor: pointer; appearance: none; outline: none;
}

.pagination { display: flex; align-items: center; gap: 4px; margin-top: 48px; justify-content: center; }
.page-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all var(--transition);
  text-decoration: none; color: var(--text);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* ── Product detail ─────────────────────────────────────────── */
.product-detail { padding: 48px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.gallery-main { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 72px; height: 90px; border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info {}
.product-detail-name { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.product-detail-fabric { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.detail-price { font-size: 28px; font-weight: 700; color: var(--primary); }
.detail-price-old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.detail-discount { background: var(--rose); color: var(--white); font-size: 13px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.rating-stars { display: flex; gap: 2px; }
.rating-count { font-size: 13px; color: var(--muted); }

.variant-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.variant-group { margin-bottom: 20px; }
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  border: 3px solid transparent; transition: border-color var(--transition);
  position: relative;
}
.color-swatch.active { border-color: var(--primary); }
.color-swatch::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
}
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-opt {
  padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all var(--transition);
}
.size-opt:hover { border-color: var(--primary); }
.size-opt.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.size-opt.out-of-stock { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 8px; width: fit-content; margin-bottom: 20px; overflow: hidden; }
.qty-selector button { width: 40px; height: 44px; border: none; background: none; cursor: pointer; font-size: 18px; transition: background var(--transition); }
.qty-selector button:hover { background: var(--blush); }
.qty-selector input { width: 48px; height: 44px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 15px; font-weight: 600; outline: none; }

.product-detail-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.product-detail-actions .btn { flex: 1; }
.product-detail-actions .btn-wishlist { flex: 0 0 auto; width: 48px; padding: 0; }
.product-detail-actions .btn-wishlist svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.product-tabs { border-top: 1px solid var(--border); margin-top: 32px; padding-top: 24px; }
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 10px 20px; background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--transition); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content[hidden] { display: none; }
.tab-content p { font-size: 14px; line-height: 1.8; color: var(--text); }
.fabric-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.fabric-spec { background: var(--blush); border-radius: 8px; padding: 14px; }
.fabric-spec-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fabric-spec-val { font-size: 14px; font-weight: 600; }

/* ── Cart page ──────────────────────────────────────────────── */
.cart-page { padding: 48px 0; }
.cart-page-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table .product-col { display: flex; align-items: center; gap: 16px; }
.cart-table img { width: 72px; height: 90px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-table .remove-btn { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 18px; }
.cart-table .remove-btn:hover { color: var(--primary); }
.cart-summary { background: var(--blush); border-radius: var(--radius); padding: 28px; height: fit-content; }
.cart-summary h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.summary-total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 8px; font-size: 16px; font-weight: 700; }
.summary-total span:last-child { color: var(--primary); font-size: 20px; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; outline: none; }
.coupon-row input:focus { border-color: var(--primary); }
.coupon-row button { padding: 10px 16px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* ── Checkout ───────────────────────────────────────────────── */
.checkout-page { padding: 48px 0; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.form-section { margin-bottom: 32px; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; background: var(--white); color: var(--text);
  transition: border-color var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); }
.form-control.error { border-color: var(--rose); }
.form-error { font-size: 12px; color: var(--rose); margin-top: 4px; }
.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color var(--transition);
}
.payment-option:has(input:checked) { border-color: var(--primary); background: rgba(157,36,73,0.04); }
.payment-option input[type="radio"] { accent-color: var(--primary); }
.payment-option-label h4 { font-size: 14px; font-weight: 600; }
.payment-option-label p { font-size: 12px; color: var(--muted); margin-top: 2px; }

.order-summary-panel { background: var(--blush); border-radius: var(--radius); padding: 28px; height: fit-content; position: sticky; top: 80px; }
.order-items { margin-bottom: 20px; }
.order-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.order-item img { width: 56px; height: 70px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.order-item-info { flex: 1; }
.order-item-info p { font-size: 13px; line-height: 1.4; }
.order-item-info .price { font-weight: 700; color: var(--primary); font-size: 14px; }

/* ── Auth pages ─────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a0e18, var(--primary));
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; position: relative;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A97E'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.auth-card {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 440px; padding: 44px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative; z-index: 1;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo a { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--dark); }
.auth-logo a span { color: var(--primary); }
.auth-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.auth-sub  { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }
.auth-footer a { color: var(--primary); font-weight: 600; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.forgot-link { font-size: 13px; color: var(--primary); font-weight: 500; text-decoration: none; float: right; }

/* ── Account page ───────────────────────────────────────────── */
.account-page { padding: 48px 0; }
.account-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.account-sidebar {}
/* Layout used by account/index, account/orders, account/wishlist pages */
.account-layout { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.account-nav { background: var(--blush); border-radius: var(--radius); overflow: hidden; }
.account-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text);
  border-left: 3px solid transparent; transition: all var(--transition);
}
.account-nav a:hover { background: rgba(157,36,73,0.06); }
.account-nav a.active { background: rgba(157,36,73,0.08); border-left-color: var(--primary); color: var(--primary); }
.account-nav a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.account-nav hr { border: none; border-top: 1px solid var(--border); }

.account-content {}
.account-section-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 24px; }

.order-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.order-card-header { background: var(--blush); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.order-number { font-weight: 700; font-size: 15px; }
.order-date { font-size: 13px; color: var(--muted); }
.order-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.status-pending    { background: #fff3cd; color: #856404; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped    { background: #cce5ff; color: #004085; }
.status-delivered  { background: #d4edda; color: #155724; }
.status-cancelled  { background: #f8d7da; color: #721c24; }
.order-card-body { padding: 20px; }

/* ── Info pages ─────────────────────────────────────────────── */
.info-page { padding: 60px 0; }
.info-content { max-width: 800px; }
.info-content h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 16px; margin-top: 36px; }
.info-content h2:first-child { margin-top: 0; }
.info-content p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.info-content ul { padding-left: 20px; margin-bottom: 16px; }
.info-content li { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 6px; }
.info-content a { color: var(--primary); }

/* FAQ accordion */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--text);
}
.faq-icon { font-size: 20px; color: var(--primary); flex-shrink: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-answer-inner { padding-bottom: 20px; font-size: 14px; line-height: 1.8; color: var(--muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Sale page badges ───────────────────────────────────────── */
.sale-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--rose); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  display: flex; gap: 4px; align-items: center;
}
.festival-banner {
  background: linear-gradient(135deg, #c44080, var(--rose));
  border-radius: var(--radius); padding: 40px; color: var(--white);
  margin-bottom: 40px; text-align: center; position: relative; overflow: hidden;
}
.festival-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A97E'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.festival-banner h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.festival-banner p { opacity: 0.85; margin-bottom: 20px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid    { grid-template-columns: repeat(3, 1fr); }
  .fabric-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout     { grid-template-columns: 220px 1fr; gap: 24px; }
  .hero-grid       { grid-template-columns: minmax(280px, 400px) 1fr; gap: 32px; }
  .account-layout  { grid-template-columns: 200px 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .site-nav   { display: none; }
  .mobile-menu-btn { display: flex; }
  .user-name  { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fabric-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 24px; }
  .shop-layout  { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .checkout-grid  { grid-template-columns: 1fr; }
  .account-grid   { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; gap: 24px; max-width: 100%; }
  .contact-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .form-control   { font-size: 16px; } /* prevents iOS Safari auto-zoom on focus */
  .hero          { padding: 40px 0; }
  .hero-grid     { grid-template-columns: 1fr; gap: 28px; }
  .hero-content  { text-align: left; }
  .hero-media, .hero-slider, .hero-media-empty { min-height: 260px; }
  .trust-item     { padding: 14px 16px; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .container    { padding: 0 16px; }
  .auth-card    { padding: 32px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}