@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garant:wght@300;400;600&family=Lato:wght@300;400;700&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --primary:      #8B1A1A;
  --primary-dark: #6B1212;
  --primary-light:#B84040;
  --gold:         #C9942A;
  --gold-light:   #E8C060;
  --teal:         #1B6B77;
  --teal-light:   #2A8A98;
  --bg:           #FFF8F0;
  --bg-card:      #FFFCF8;
  --dark:         #2C1810;
  --muted:        #7D5A50;
  --border:       #E8D5C4;
  --border-light: #F2E8DE;
  --success:      #2D7A5A;
  --shadow-sm:    0 2px 8px rgba(44,24,16,0.08);
  --shadow-md:    0 4px 20px rgba(44,24,16,0.12);
  --shadow-lg:    0 8px 40px rgba(44,24,16,0.16);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   all 0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
.font-cormorant { font-family: 'Cormorant Garant', serif; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--dark);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.7;
}

/* ─── Utility ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.grid { display: grid; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.fw-600 { font-weight: 600; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.hidden { display: none !important; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: #b07d20; border-color: #b07d20; transform: translateY(-1px); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn-whatsapp:hover { background: #1daa52; border-color: #1daa52; transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,248,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.navbar-logo .logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.navbar-links a:hover { color: var(--primary); }
.navbar-links a:hover::after { width: 100%; }
.navbar-links a.active { color: var(--primary); }
.navbar-links a.active::after { width: 100%; }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--primary-dark); }
.cart-count {
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  transition: var(--transition);
}
.navbar-mobile a:hover { color: var(--primary); background: var(--border-light); }

/* ─── Batik Pattern SVG (inline as background) ─────────── */
.batik-bg {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='rgba(201,148,42,0.2)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='rgba(201,148,42,0.15)' stroke-width='0.8'/%3E%3Ccircle cx='40' cy='40' r='6' fill='rgba(201,148,42,0.12)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(45 40 40)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(90 40 40)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(135 40 40)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(180 40 40)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(225 40 40)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(270 40 40)'/%3E%3Cellipse cx='40' cy='14' rx='5' ry='12' fill='rgba(201,148,42,0.07)' transform='rotate(315 40 40)'/%3E%3C/svg%3E"),
    var(--bg);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  background-color: #2C1810;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.92) 0%, rgba(74,26,26,0.82) 50%, rgba(107,32,32,0.7) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='42' fill='none' stroke='rgba(201,148,42,0.1)' stroke-width='1.5'/%3E%3Ccircle cx='60' cy='60' r='28' fill='none' stroke='rgba(201,148,42,0.07)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='10' fill='rgba(201,148,42,0.07)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(45 60 60)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(90 60 60)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(135 60 60)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(180 60 60)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(225 60 60)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(270 60 60)'/%3E%3Cellipse cx='60' cy='22' rx='7' ry='18' fill='rgba(201,148,42,0.05)' transform='rotate(315 60 60)'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201,148,42,0.15);
  border: 1px solid rgba(201,148,42,0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .italic { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 700;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.hero-card-price {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.hero-card-price strong { color: var(--gold-light); font-size: 18px; }
.hero-swatch-row { display: flex; gap: 8px; margin-top: 12px; }
.hero-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
}

/* ─── Section spacing ─────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 12px auto 0; }

/* ─── Product Card ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image .fabric-swatch {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.product-card:hover .fabric-swatch { transform: scale(1.05); }
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}
.product-card-badge.new { background: var(--teal); }
.product-card-badge.sale { background: var(--primary); }
.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }
.product-card-body { padding: 20px; }
.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-card-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}
.product-price .currency {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}
.color-dots { display: flex; gap: 6px; }
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.color-dot:hover { transform: scale(1.2); }

/* ─── Fabric swatches (product card backgrounds) ────────── */
.fabric-indigo {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,255,255,0.1)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}
.fabric-crimson {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,220,180,0.15)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,220,180,0.1)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,220,180,0.12)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,220,180,0.07)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,220,180,0.07)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,220,180,0.07)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,220,180,0.07)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,220,180,0.07)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,220,180,0.07)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #7f0000 0%, #b71c1c 50%, #c62828 100%);
}
.fabric-forest {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,200,0.12)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,255,200,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,255,200,0.1)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,200,0.06)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,200,0.06)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,200,0.06)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,200,0.06)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,200,0.06)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,200,0.06)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
}
.fabric-saffron {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,255,255,0.12)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.07)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.07)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.07)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.07)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.07)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.07)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #bf360c 0%, #e64a19 50%, #f4511e 100%);
}
.fabric-peacock {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,255,255,0.1)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #004d40 0%, #00695c 50%, #00796b 100%);
}
.fabric-lavender {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,255,255,0.1)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,255,255,0.06)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #4a148c 0%, #6a1b9a 50%, #7b1fa2 100%);
}
.fabric-midnight {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(200,210,255,0.12)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(200,210,255,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(200,210,255,0.1)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(200,210,255,0.06)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(200,210,255,0.06)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(200,210,255,0.06)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(200,210,255,0.06)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(200,210,255,0.06)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(200,210,255,0.06)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%);
}
.fabric-terracotta {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,240,220,0.15)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,240,220,0.1)' stroke-width='0.8'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,240,220,0.12)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,240,220,0.07)' transform='rotate(0 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,240,220,0.07)' transform='rotate(60 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,240,220,0.07)' transform='rotate(120 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,240,220,0.07)' transform='rotate(180 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,240,220,0.07)' transform='rotate(240 30 30)'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='9' fill='rgba(255,240,220,0.07)' transform='rotate(300 30 30)'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #880e4f 0%, #ad1457 50%, #c2185b 100%);
}

/* ─── Features / Why Us ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 22px;
}
.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── WhatsApp Solution Section ──────────────────────────── */
.wa-section {
  background: linear-gradient(135deg, #1a0a0a 0%, #2C1810 100%);
  position: relative;
  overflow: hidden;
}
.wa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='rgba(201,148,42,0.07)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='rgba(201,148,42,0.05)' stroke-width='0.8'/%3E%3C/svg%3E");
}
.wa-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wa-content .section-label { color: #25D366; }
.wa-content .section-title { color: #fff; }
.wa-content .section-subtitle { color: rgba(255,255,255,0.55); }
.wa-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.wa-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wa-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 18px;
}
.wa-feature-text h4 { color: #fff; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.wa-feature-text p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ─── Phone Mockup ───────────────────────────────────────── */
.phone-mockup {
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.phone-screen {
  background: #ECE5DD;
  border-radius: 26px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: #075E54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 36px;
  height: 36px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.wa-header-info .name { font-size: 14px; font-weight: 700; color: #fff; }
.wa-header-info .status { font-size: 11px; color: rgba(255,255,255,0.6); }
.wa-messages {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.wa-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
}
.wa-msg.customer {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 2px;
  color: #333;
}
.wa-msg.bot {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 2px;
  color: #333;
}
.wa-msg .time { font-size: 10px; color: #999; margin-top: 4px; text-align: right; }
.wa-typing {
  background: #fff;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  display: flex;
  gap: 4px;
  align-items: center;
  max-width: 60px;
}
.wa-typing span {
  width: 6px; height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: #fff; font-weight: 700;
}
.testimonial-author .info .name { font-weight: 700; font-size: 14px; }
.testimonial-author .info .location { font-size: 12px; color: var(--muted); }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #6B1212 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── 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;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: #fff; font-size: 24px; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── WhatsApp Float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ─── Shop Page ──────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.shop-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.color-filter-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.color-filter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.color-filter-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}
.color-filter-item.active .color-filter-swatch,
.color-filter-item:hover .color-filter-swatch { border-color: var(--gold); transform: scale(1.1); }
.color-filter-item span { font-size: 10px; color: var(--muted); text-align: center; }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type=range] { width: 100%; accent-color: var(--primary); }
.price-range .range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
}
.filter-checkbox input { accent-color: var(--primary); width: 15px; height: 15px; }
.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.shop-header h2 { font-size: 14px; color: var(--muted); }
.shop-header h2 strong { color: var(--dark); }
.sort-select {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--dark);
  background: var(--bg-card);
  cursor: pointer;
}
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #4a2020 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='rgba(201,148,42,0.1)' stroke-width='1'/%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--gold-light); }

/* ─── Product Detail ─────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-image {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.product-thumbs { display: flex; gap: 12px; }
.product-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.product-thumb.active { border-color: var(--gold); }
.product-thumb:hover { border-color: var(--primary); }
.product-info h1 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 8px; }
.product-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.product-rating .stars { color: var(--gold); }
.product-rating .count { color: var(--muted); }
.product-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
}
.product-detail-price .currency { font-size: 18px; vertical-align: super; }
.option-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.color-options { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.color-option-swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.color-option.active .color-option-swatch { border-color: var(--gold); transform: scale(1.1); }
.color-option span { font-size: 11px; color: var(--muted); }
.size-options { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.size-option {
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  background: var(--bg-card);
}
.size-option:hover { border-color: var(--primary); color: var(--primary); }
.size-option.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blouse-options { display: flex; gap: 10px; margin-bottom: 28px; }
.blouse-option {
  flex: 1;
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.blouse-option.active { border-color: var(--primary); background: rgba(139,26,26,0.04); }
.blouse-option .label { font-size: 13px; font-weight: 700; color: var(--dark); }
.blouse-option .note { font-size: 11px; color: var(--muted); margin-top: 2px; }
.add-to-cart-section { display: flex; gap: 12px; margin-bottom: 28px; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--dark);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--border); }
.qty-input {
  width: 52px; height: 48px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: var(--dark);
}
.product-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--border-light);
  border-radius: var(--radius);
  margin-top: 24px;
}
.product-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.product-guarantee i { color: var(--success); width: 16px; }

/* ─── Cart ───────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.cart-item-image {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  display: inline-block;
}
.cart-item-info { margin-left: 12px; display: inline-block; vertical-align: middle; }
.cart-item-info .name { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 4px; }
.cart-item-info .variants { font-size: 12px; color: var(--muted); }
.remove-btn { color: var(--muted); font-size: 18px; transition: var(--transition); }
.remove-btn:hover { color: var(--primary); }
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 16px;
}
.summary-row.total .amount { color: var(--primary); font-size: 20px; font-family: 'Playfair Display', serif; }
.coupon-input {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
}
.delivery-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(45,122,90,0.08);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--success);
  margin: 16px 0;
}
.empty-cart {
  text-align: center;
  padding: 80px 24px;
}
.empty-cart i { font-size: 56px; color: var(--border); margin-bottom: 20px; }
.empty-cart h3 { font-size: 22px; margin-bottom: 10px; }
.empty-cart p { color: var(--muted); margin-bottom: 28px; }

/* ─── Checkout ───────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.checkout-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.checkout-section h3 {
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section h3 .step-num {
  width: 28px; height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}
.payment-options { display: flex; flex-direction: column; gap: 14px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option.active { border-color: var(--primary); background: rgba(139,26,26,0.03); }
.payment-option input[type=radio] { accent-color: var(--primary); width: 18px; height: 18px; }
.payment-option-icon { font-size: 22px; width: 28px; text-align: center; }
.payment-option-info .title { font-weight: 700; font-size: 14px; }
.payment-option-info .desc { font-size: 12px; color: var(--muted); }
.payhere-badge {
  margin-left: auto;
  background: #4A90D9;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.cod-badge {
  margin-left: auto;
  background: var(--success);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.delivery-eta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(27,107,119,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(27,107,119,0.15);
  margin-top: 16px;
}
.delivery-eta i { color: var(--teal); font-size: 20px; }
.delivery-eta .eta-label { font-size: 12px; color: var(--muted); }
.delivery-eta .eta-value { font-weight: 700; font-size: 14px; color: var(--teal); }
.order-summary-checkout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}

/* ─── Admin Panel ────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f5f5f7;
}
.admin-sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-logo .logo-main { color: #fff; font-size: 20px; }
.admin-logo .logo-sub { color: var(--gold); }
.admin-logo .role-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(201,148,42,0.15);
  border: 1px solid rgba(201,148,42,0.25);
  border-radius: 20px;
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav-section {
  padding: 8px 24px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-link i { width: 18px; text-align: center; font-size: 15px; }
.admin-nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.admin-nav-link.active { color: #fff; background: rgba(139,26,26,0.3); border-left-color: var(--primary); }
.admin-nav-link .badge {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}
.admin-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-user-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.admin-user-info .name { color: #fff; font-size: 13px; font-weight: 700; }
.admin-user-info .role { color: rgba(255,255,255,0.4); font-size: 11px; }
.admin-main { flex: 1; overflow: auto; }
.admin-topbar {
  background: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8e8ee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h1 { font-size: 20px; color: var(--dark); }
.admin-topbar-actions { display: flex; align-items: center; gap: 16px; }
.admin-content { padding: 32px; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.metric-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.metric-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.metric-icon.revenue { background: rgba(139,26,26,0.1); color: var(--primary); }
.metric-icon.orders { background: rgba(201,148,42,0.1); color: var(--gold); }
.metric-icon.pending { background: rgba(230,73,25,0.1); color: #e64919; }
.metric-icon.customers { background: rgba(27,107,119,0.1); color: var(--teal); }
.metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.metric-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.metric-change {
  font-size: 12px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-change.up { color: var(--success); }
.metric-change.down { color: var(--primary); }
.admin-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; margin-bottom: 24px; }
.admin-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.admin-card-header h3 { font-size: 16px; color: var(--dark); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #e8e8ee;
}
.data-table td { padding: 13px 14px; border-bottom: 1px solid #f0f0f4; font-size: 13px; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafafa; }
.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.status-badge.paid { background: rgba(45,122,90,0.1); color: var(--success); }
.status-badge.processing { background: rgba(201,148,42,0.1); color: var(--gold); }
.status-badge.pending { background: rgba(230,73,25,0.1); color: #e64919; }
.status-badge.shipped { background: rgba(27,107,119,0.1); color: var(--teal); }
.top-products { display: flex; flex-direction: column; gap: 16px; }
.top-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-product-rank {
  width: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}
.top-product-swatch {
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.top-product-info { flex: 1; min-width: 0; }
.top-product-info .name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-product-info .sold { font-size: 11px; color: var(--muted); }
.top-product-revenue { font-size: 14px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.add-product-form { margin-top: 24px; }
.add-product-form .form-grid { grid-template-columns: 1fr 1fr; }
.admin-products-table-section { margin-top: 24px; }
.chart-container { position: relative; height: 280px; }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* ─── Responsive ─────────────────────────────────────────── */

/* ── Admin mobile overlay ── */
.admin-sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 199;
  backdrop-filter: blur(2px);
}
.admin-sidebar-overlay.active { display: block; }

/* ── Admin table scroll wrapper ── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
.table-scroll .data-table { min-width: 640px; }

/* ── WhatsApp mobile toggle ── */
.wa-inbox-mobile-back {
  display: none; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700; cursor: pointer; border: none;
  width: 100%;
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .wa-inner { grid-template-columns: 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; margin-bottom: 24px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-checkout { position: static; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .navbar-links, .navbar-actions .btn-outline-dark { display: none; }
  .mobile-menu-btn { display: flex; }
  .navbar-inner { height: 60px; }

  /* Hero */
  .hero { min-height: auto; padding: 56px 0 48px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero p { font-size: 15px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 22px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .section-header { margin-bottom: 32px; }
  .page-banner { padding: 32px 0; }
  .page-banner h1 { font-size: clamp(22px, 6vw, 32px); }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Admin */
  .admin-sidebar { position: fixed; left: -260px; z-index: 200; transition: left 0.3s ease; top: 0; bottom: 0; height: 100vh; overflow-y: auto; }
  .admin-sidebar.open { left: 0; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  /* Cart table — stack on mobile */
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { border-bottom: 1px solid var(--border); padding: 16px 0; }
  .cart-table td { padding: 4px 0; border: none; }
  .cart-table td::before { content: attr(data-label); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }

  /* WhatsApp float — smaller on mobile */
  .wa-float { width: 50px; height: 50px; font-size: 22px; bottom: 20px; right: 16px; }

  /* Buttons */
  .btn-lg { padding: 13px 24px; font-size: 13px; }
  .hero-actions { gap: 12px; }
}

/* ── Admin mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Layout */
  .admin-content { padding: 16px; }
  .admin-topbar { padding: 12px 16px; }
  .admin-topbar h1 { font-size: 16px; }
  .admin-topbar-actions span { display: none; }

  /* Metrics */
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .metric-card { padding: 16px; gap: 12px; }
  .metric-value { font-size: 22px; }
  .metric-icon { width: 40px; height: 40px; font-size: 16px; }

  /* Admin grid (chart + top products) */
  .admin-grid { grid-template-columns: 1fr; gap: 16px; }
  .admin-card { padding: 16px; }
  .chart-container { height: 200px; }

  /* Dashboard bottom row: P&L + channel chart */
  .dashboard-bottom-grid { grid-template-columns: 1fr !important; }

  /* Staff grid */
  .staff-grid { grid-template-columns: 1fr !important; }

  /* Bot stats */
  #bot-stats-container { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* Login */
  #login-screen > div { padding: 32px 20px !important; margin: 16px; }

  /* WhatsApp inbox stacked */
  .wa-inbox-mobile-back { display: flex; }
  #page-whatsapp > div:first-child { grid-template-columns: 1fr !important; height: auto !important; min-height: 70vh; }
  .wa-chat-list-panel { display: flex !important; }
  .wa-chat-window-panel { display: none !important; }
  .wa-chat-window-panel.active { display: flex !important; flex-direction: column; }

  /* Product form */
  .add-product-form .form-grid { grid-template-columns: 1fr !important; }
}

/* ── Admin small mobile (≤480px) ── */
@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .metric-card { padding: 12px; gap: 10px; }
  .metric-value { font-size: 20px; }
  .metric-label { font-size: 11px; }
  .metric-change { font-size: 11px; }
  .metric-icon { width: 36px; height: 36px; font-size: 14px; border-radius: 9px; }
  .admin-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .admin-card-header h3 { font-size: 14px; }
  .chart-container { height: 180px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 20px; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-sm { padding: 28px 0; }
  .section-title { font-size: 26px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-image { height: 180px; }
  .product-card-body { padding: 14px; }
  .product-card-name { font-size: 15px; }
  .product-price { font-size: 17px; }

  /* Admin */
  .metrics-grid { grid-template-columns: 1fr; }

  /* Cart */
  .empty-cart { padding: 48px 16px; }
  .empty-cart i { font-size: 44px; }

  /* Checkout */
  .checkout-section { padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Product detail */
  .add-to-cart-section { flex-direction: column; }
  .add-to-cart-section .btn { width: 100%; justify-content: center; }
  .blouse-options { flex-direction: column; }

  /* Buttons full-width context */
  .btn-full-mobile { width: 100%; justify-content: center; }

  /* Summary/coupon on mobile */
  .coupon-input { flex-direction: column; }
  .coupon-input .btn { width: 100%; justify-content: center; }
}

/* ─── Notification Toast ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast i { color: #25D366; font-size: 18px; }

/* ─── Divider ─────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 12px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
