/* =============================================
   SHANTABAA SAREES — Premium CSS
   ============================================= */

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #a07840;
  --gold-bright: #d4af7a;
  --cream: #fdf8f2;
  --cream-dark: #f5ebe0;
  --ivory: #faf6ef;
  --charcoal: #1a1410;
  --charcoal-soft: #2d2420;
  --brown: #3d2b1f;
  --text: #2c1f14;
  --text-soft: #6b5040;
  --text-muted: #9a7d6a;
  --white: #ffffff;
  --border: rgba(201,169,110,0.25);
  --shadow: 0 4px 30px rgba(60,30,10,0.08);
  --shadow-lg: 0 12px 60px rgba(60,30,10,0.15);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .78rem;
  letter-spacing: .1em;
  font-weight: 400;
  font-family: var(--font-sans);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4%;
  background: rgba(253,248,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: .75rem 4%;
  box-shadow: 0 2px 20px rgba(60,30,10,0.1);
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover { color: var(--gold-dark); }
.nav-link:hover::after { width: 100%; }

.logo { text-align: center; }
.logo a { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .05em;
  line-height: 1;
}
.logo-ornament {
  color: var(--gold);
  font-size: 1rem;
  margin: 0 .4rem;
}
.logo-tagline {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
}
.nav-icons { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-soft);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.icon-btn:hover { color: var(--gold-dark); background: var(--cream-dark); }
.badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold-dark);
  color: white;
  font-size: .6rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.mobile-menu-btn { display: none; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 100%;
  background: var(--ivory);
  z-index: 2000;
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); }
.close-mobile {
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-soft);
  margin-bottom: 2rem; display: block;
}
.mobile-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.mobile-nav a:hover { color: var(--gold-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf8f2 0%, #f5ebe0 50%, #ede0cc 100%);
  padding: 4rem 4% 4rem 8%;
  gap: 2rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,169,110,0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.hero-gradient {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, rgba(139,94,60,0.06) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  background: rgba(201,169,110,0.12);
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(201,169,110,0.3);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-title-line {
  display: block;
  animation: fadeUp .8s ease both;
}
.hero-title-line:nth-child(2) { animation-delay: .1s; }
.hero-title .accent {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp .8s ease .2s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeUp .8s ease .4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .2rem;
}
.stat-divider {
  width: 1px; height: 35px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease .2s both;
}
.hero-saree-art {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.saree-svg { width: 100%; height: auto; }
.hero-card {
  position: absolute;
  z-index: 3;
}
.hero-card-1 { bottom: 15%; left: -5%; animation: floatCard 4s ease infinite; }
.hero-card-2 { top: 10%; right: -5%; animation: floatCard 4s ease 2s infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.product-mini-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 110px;
  box-shadow: 0 8px 30px rgba(60,30,10,0.15);
  border: 1px solid rgba(201,169,110,0.2);
}
.mini-img {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mini-saree { width: 60px; height: auto; }
.mini-info {
  padding: .5rem .6rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.mini-label { font-size: .65rem; color: var(--text-muted); }
.mini-price { font-size: .8rem; font-weight: 600; color: var(--gold-dark); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: .85rem 2.2rem;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(60,30,10,0.2);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--text-soft);
  padding: .85rem 2.2rem;
  border: 1px solid rgba(60,30,10,0.2);
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--gold-dark);
  padding: .85rem 2.5rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-1px);
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-insta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(131,58,180,0.3); }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 4%; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
}
.ornament-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.ornament-diamond {
  color: var(--gold);
  font-size: .65rem;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ===== COLLECTIONS GRID ===== */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.collection-large { grid-row: span 2; }
.collection-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.collection-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.collection-large .collection-img { min-height: 580px; }
.collection-saree-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity .5s, transform .5s;
}
.collection-saree-art svg { width: 85%; height: 85%; }
.collection-card:hover .collection-saree-art { opacity: 1; transform: scale(1.03); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.8) 0%, rgba(10,5,2,0.2) 50%, transparent 100%);
  transition: background .4s;
}
.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(10,5,2,0.9) 0%, rgba(10,5,2,0.3) 60%, transparent 100%);
}
.collection-info {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: white;
  transform: translateY(8px);
  transition: transform .35s;
}
.collection-card:hover .collection-info { transform: translateY(0); }
.collection-count {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: .4rem;
}
.collection-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .3rem;
}
.collection-info p {
  font-size: .82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.collection-cta {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  opacity: 0;
  transition: opacity .3s;
}
.collection-card:hover .collection-cta { opacity: 1; }

/* ===== PRODUCTS ===== */
.products-filter {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: .5rem 1.4rem;
  border-radius: 50px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-soft);
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold-light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s, box-shadow .35s;
  border: 1px solid rgba(201,169,110,0.1);
  animation: fadeIn .5s ease both;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img-main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s;
}
.product-card:hover .product-img-main { transform: scale(1.04); }
.product-img svg { width: 75%; height: auto; transition: transform .5s; }
.product-badge-new {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--charcoal);
  color: var(--gold-light);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2px;
}
.product-badge-sale {
  position: absolute;
  top: 12px; left: 12px;
  background: #c0392b;
  color: white;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2px;
}
.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  opacity: 0;
  transform: translateX(8px);
  transition: all .3s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 36px; height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: var(--transition);
  color: var(--text-soft);
}
.action-btn:hover { background: var(--charcoal); color: var(--gold-light); }
.action-btn.wishlisted { color: #c0392b; }
.product-info { padding: 1rem 1.1rem; }
.product-fabric {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .3rem;
  display: block;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.product-price-original {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-discount {
  font-size: .72rem;
  color: #2e7d4f;
  font-weight: 500;
}
.add-cart-btn {
  width: 100%;
  background: var(--charcoal);
  color: var(--gold-light);
  border: none;
  padding: .65rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-sans);
  border-radius: 2px;
}
.add-cart-btn:hover { background: var(--brown); }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 4%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}
.feature-icon { color: var(--gold-dark); flex-shrink: 0; }
.feature-text { display: flex; flex-direction: column; gap: .2rem; }
.feature-text strong { font-size: .85rem; color: var(--charcoal); font-weight: 600; }
.feature-text span { font-size: .78rem; color: var(--text-muted); }
.feature-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== STORY SECTION ===== */
.story-section {
  padding: 5rem 4%;
  background: var(--cream-dark);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q40 15 30 25 Q20 15 30 5Z' fill='none' stroke='%23c9a96e' stroke-width='0.3' opacity='0.2'/%3E%3C/svg%3E");
}
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.story-para {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.story-signature { margin-top: 1.5rem; }
.signature-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-soft);
  font-style: normal;
}
.signature-text em { color: var(--gold-dark); }
.story-visual { position: relative; }
.story-img-wrapper {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.story-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.story-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px; height: 100px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 3px solid var(--gold);
}
.badge-inner { text-align: center; }
.badge-year { font-size: .55rem; color: var(--gold-light); display: block; letter-spacing: .1em; text-transform: uppercase; }
.badge-num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-light); display: block; line-height: 1; }
.badge-city { font-size: .45rem; color: rgba(232,213,163,0.7); display: block; letter-spacing: .05em; }
.story-img-stat {
  position: absolute;
  top: 20px; right: -25px;
  background: white;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  text-align: center;
}
.stat-big { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold-dark); display: block; line-height: 1; }
.stat-sm { font-size: .65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* ===== INSTAGRAM GRID ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.insta-item-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s;
}
.insta-item:hover .insta-item-img { transform: scale(1.06); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { color: white; }
.insta-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--charcoal);
  padding: 5rem 4%;
}
.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-section .section-title { color: var(--ivory); }
.testimonials-section .ornament-line { background: var(--gold); }
.testimonials-section .ornament-diamond { color: var(--gold); }
.testimonials-wrapper { max-width: 900px; margin: 0 auto; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.2rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.author-info { text-align: left; }
.author-name { font-size: .9rem; color: var(--ivory); font-weight: 500; display: block; }
.author-city { font-size: .75rem; color: var(--gold-light); display: block; }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.t-btn {
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold-light);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.t-btn:hover { background: var(--gold); color: white; }
.t-dots { display: flex; gap: .4rem; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  cursor: pointer;
  transition: all .3s;
}
.t-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, #f5ebe0, #ede0cc, #e5d5be);
  padding: 5rem 4%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 Q60 30 50 50 Q40 30 50 10Z' fill='none' stroke='%23c9a96e' stroke-width='0.4' opacity='0.3'/%3E%3C/svg%3E");
  pointer-events: none;
}
.newsletter-content { position: relative; z-index: 1; max-width: 550px; margin: 0 auto; }
.newsletter-ornament { color: var(--gold); font-size: .75rem; letter-spacing: .3em; margin-bottom: 1rem; }
.newsletter-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.newsletter-content p { color: var(--text-soft); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: .85rem 1.2rem;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: .9rem;
  font-family: var(--font-sans);
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  padding: .85rem 1.8rem;
  background: var(--charcoal);
  color: var(--gold-light);
  border: 1px solid var(--charcoal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.newsletter-btn:hover { background: var(--brown); }
.newsletter-note { font-size: .75rem; color: var(--text-muted); margin-top: .75rem; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal-soft); padding-top: 4rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 0 4% 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: .3rem;
}
.footer-tagline {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc { font-size: .85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .6rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-heading {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; color: rgba(255,255,255,0.5); font-size: .85rem; line-height: 1.5; }
.footer-contact svg { color: var(--gold); margin-top: .1rem; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4%;
  font-size: .78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color .3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: var(--ivory);
  z-index: 3001;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  font-weight: 400;
}
.close-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--text-soft);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.close-btn:hover { background: var(--cream-dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
}
.cart-empty-sub { font-size: .85rem; color: var(--text-muted); }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  animation: fadeIn .3s ease;
}
.cart-item-img {
  width: 65px; height: 80px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; color: var(--charcoal); font-weight: 500; margin-bottom: .2rem; }
.cart-item-fabric { font-size: .75rem; color: var(--text-muted); }
.cart-item-price { font-size: .95rem; color: var(--gold-dark); font-weight: 600; margin-top: .3rem; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: .8rem;
  padding: .2rem;
  transition: color .3s;
}
.cart-item-remove:hover { color: #c0392b; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-size: .95rem; font-weight: 600; color: var(--charcoal); }
.cart-shipping-note { font-size: .75rem; color: var(--text-muted); margin-top: .4rem; }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--ivory);
  z-index: 4001;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: 0 20px 80px rgba(0,0,0,0.2);
}
.product-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.modal-close:hover { background: var(--charcoal); color: white; }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.modal-img {
  position: relative;
  overflow: hidden;
}
.modal-img-main {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s;
}
.modal-img:hover .modal-img-main { transform: scale(1.04); }
.modal-img-thumbs {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
}
.thumb {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all .3s;
}
.thumb.active { background: white; width: 20px; border-radius: 4px; }
.modal-details { padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.modal-fabric-badge {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,169,110,0.1);
  padding: .3rem .8rem;
  border-radius: 50px;
  width: fit-content;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}
.modal-price {
  font-size: 1.4rem;
  color: var(--charcoal);
  font-weight: 600;
}
.modal-price .original { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-left: .5rem; font-weight: 400; }
.modal-desc { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }
.modal-details-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.modal-details-list li { font-size: .85rem; color: var(--text-soft); display: flex; gap: .5rem; }
.modal-details-list li::before { content: '✦'; color: var(--gold); font-size: .6rem; margin-top: .2rem; }
.modal-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.color-swatches { display: flex; gap: .6rem; margin-top: .4rem; }
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s;
}
.color-swatch.selected { border-color: var(--charcoal); box-shadow: 0 0 0 2px var(--gold); }
.modal-btn-row { display: flex; gap: .75rem; margin-top: auto; }
.modal-btn-row .btn-primary { flex: 1; justify-content: center; }
.modal-wishlist-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-wishlist-btn:hover { border-color: #c0392b; color: #c0392b; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--charcoal);
  color: white;
  font-size: .75rem;
  padding: .4rem .8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-size: .85rem;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  border: 1px solid rgba(201,169,110,0.2);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .features-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .feature-divider:nth-child(4) { display: none; }
  .features-strip > *:nth-child(3) { grid-column: 1; }
  .features-strip > *:nth-child(4) { display: none; }
  .features-strip > *:nth-child(5) { grid-column: 1; }
  .features-strip > *:nth-child(6) { display: none; }
  .features-strip > *:nth-child(7) { grid-column: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .insta-item.featured { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 4%; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding-bottom: 5rem; }
  .hero-content { max-width: 100%; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-large { grid-column: span 2; grid-row: span 1; }
  .collection-large .collection-img { min-height: 320px; }
  .story-content { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { display: none; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-img-main { min-height: 280px; }
  .features-strip { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem 4%; }
  .feature-divider { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .navbar { padding: 1rem 4%; }
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .mobile-menu-btn { display: flex; }
  .logo-text { font-size: 1.3rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 1rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-large { grid-column: span 1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-item.featured { grid-column: span 1; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-drawer { width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-radius: var(--radius); }
  .newsletter-btn { border-radius: var(--radius); }
}
