/* ═══════════════════════════════════════════════════════════
   TAJ FASHION — SHARED STYLESHEET
   All pages import this file for brand consistency.
   Individual pages add only page-specific overrides inline.
═══════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --saffron:    #D4380D;
  --saffron-lt: #F5500D;
  --gold:       #C89B3C;
  --gold-lt:    #E8BE6A;
  --maroon:     #7D1D1D;
  --cream:      #FBF6EF;
  --cream-dk:   #F2E9DA;
  --ink:        #1A0F00;
  --ink-mid:    #4A3728;
  --ink-lt:     #7A6555;
  --white:      #FFFFFF;
/*  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif; */
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans:  'DM Sans', sans-serif;  
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius:     4px;
  --shadow-sm:  0 2px 12px rgba(26,15,0,0.08);
  --shadow-md:  0 8px 32px rgba(26,15,0,0.12);
  --shadow-lg:  0 20px 60px rgba(26,15,0,0.18);
}

/* ─── BODY ───────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.section-header p  { color: var(--ink-lt); font-size: 1.05rem; }

/* ─── LABELS ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 12px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-lt); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--saffron); border: 2px solid var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--saffron); }
.btn-white:hover { background: var(--cream); }
.btn-white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-white-outline:hover { background: rgba(255,255,255,0.12); }

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--maroon);
  color: var(--gold-lt);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}
.topbar a { color: var(--gold-lt); text-decoration: underline; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(200,155,60,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { font-family: var(--font-serif); font-size: 1.85rem; font-weight: 700; color: var(--saffron); letter-spacing: 0.04em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { transform: scaleX(1); }
.nav-links a[aria-current] { color: var(--saffron); }
.nav-cta { font-size: 0.78rem; padding: 10px 22px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;transition: transform 0.25s ease, opacity 0.25s ease; }

/* ═══════════════════════════════════════════════════
   DROPDOWN NAV — add these rules to taj-fashion.css
   Paste after your existing .nav / .nav-links rules
   ═══════════════════════════════════════════════════ */

/* Arrow indicator */
.nav-arrow {
  font-size: 0.65rem;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
}
.has-dropdown:hover .nav-arrow,
.has-dropdown.open  .nav-arrow {
  transform: rotate(180deg);
}

/* ── DESKTOP DROPDOWN ── */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: calc(100%);
  padding: 6px 0 8px 0;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  z-index: 400;
  list-style: none;
  /* Fade-in */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}
/* Show on hover (desktop) */
.has-dropdown:hover .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Keep visible while transitioning — use animation trick */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown li {
  list-style: none;
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.dropdown li a:hover,
.dropdown li a[aria-current="page"] {
  color: var(--saffron);
  background: rgba(200,155,60,0.06);
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--ink);
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,15,0,0.45), rgba(26,15,0,0.82));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold-lt); font-style: italic; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.festival-badge {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream-dk);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,155,60,0.15);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.78rem;
  color: var(--ink-lt);
}
.breadcrumb-list a { color: var(--saffron); }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li:not(:last-child)::after { content: '›'; margin-left: 8px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--saffron); border-color: var(--saffron); color: white; }
.footer-col h4 {
  color: var(--gold-lt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ─── WHATSAPP BUTTON ────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-size: 1.6rem;
  color: white;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

.text-btn { display: none; }
@media (max-width: 768px) { .text-btn { display: flex; } }

/* ─── APPOINTMENT STRIP ──────────────────────────────────── */
.appt-strip {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.appt-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='28' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='18' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.appt-strip-inner { position: relative; z-index: 1; }
.appt-strip h2 { font-family: var(--font-serif); font-size: clamp(2rem,3.5vw,3.2rem); color: var(--white); margin-bottom: 16px; }
.appt-strip p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 40px; }
.appt-strip-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  /* existing rules stay as-is, ADD these: */

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;          /* same as .nav-inner height */
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px 28px;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--gold);
    z-index: 200;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open a {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(200,155,60,0.15);
  }

  .nav-links.open a:last-of-type {
    border-bottom: none;
  }

  /* Animate hamburger to X when open */
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
   .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links .dropdown {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    margin: 0 0 8px 12px;
    padding: 4px 0;
    min-width: 0;
    background: transparent;
  }
  .has-dropdown.open > .dropdown {
    display: block;
  }
  .dropdown li a {
    padding: 9px 0 9px 14px;
    font-size: 0.88rem;
    color: var(--ink-mid);
    border-bottom: none;
    background: transparent;
  }
  .dropdown li a:hover {
    color: var(--saffron);
    background: transparent;
  }

 
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   Styles specific to index.htm sections, extracted from
   inline <style> block for maintainability.
═══════════════════════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(125,29,29,0.82) 0%, rgba(26,15,0,0.72) 50%, rgba(212,56,13,0.55) 100%),
    url('./images/carousel/taj-fashion-austin-indian-wedding-dresses.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89B3C' fill-opacity='0.07'%3E%3Cpath d='M40 0C18 0 0 18 0 40s18 40 40 40 40-18 40-40S62 0 40 0zm0 6c18.8 0 34 15.2 34 34S58.8 74 40 74 6 58.8 6 40 21.2 6 40 6zm0 8c-14.3 0-26 11.7-26 26s11.7 26 26 26 26-11.7 26-26-11.7-26-26-26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-lt);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.stars { color: var(--gold-lt); letter-spacing: 2px; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { background: var(--maroon); padding: 20px 0; }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(200,155,60,0.2);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-text strong { display: block; color: var(--gold-lt); font-size: 0.85rem; font-weight: 600; }
.trust-text span   { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

/* ─── SECTION SHARED ─────────────────────────────────────── */
/* NOTE: .section and .section-header are already in shared
   CSS above — these rules add nothing new, so omitted. */

/* ─── NISHA INTRO ────────────────────────────────────────── */
.nisha-section { background: var(--white); }
.nisha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nisha-img-wrap { position: relative; }
.nisha-img-wrap img { width: 100%; border-radius: 2px; box-shadow: var(--shadow-lg); }
.nisha-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--saffron);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.nisha-img-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.nisha-img-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.nisha-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.18;
}
.nisha-content p { color: var(--ink-mid); margin-bottom: 20px; font-size: 1.02rem; }
.nisha-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(200,155,60,0.25);
  border-bottom: 1px solid rgba(200,155,60,0.25);
}
.nisha-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--saffron);
  font-weight: 700;
}
.nisha-stat span { font-size: 0.8rem; color: var(--ink-lt); line-height: 1.4; }

/* ─── COLLECTION GRID Claude replace with Gemini below ────────────────────────────────────── 
.collection {  background: var(--white);}
 
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.collection-card:not(.wide) { height: 380px; }
.collection-card.wide       { grid-column: span 2; height: 763px; }
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,0,0.88) 0%, rgba(26,15,0,0.1) 50%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: var(--transition);
}
.collection-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.collection-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.collection-card:hover p { max-height: 80px; }
.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.collection-card:hover .collection-card-link { opacity: 1; } */


/* ─── COLLECTION GRID Gemini ────────────────────────────────────── */

/* ─── UPDATED COLLECTION GRID ────────────────────────────────────── */
.collection { 
  background: var(--white); 
  padding: 20px 0; /* Optional: adds breathing room */
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Use auto-rows to define the base height of one "unit" */
  grid-auto-rows: 380px; 
  gap: 3px;
  /* 'dense' fills in gaps if a wide item moves to a new row */
  grid-auto-flow: dense; 
}

.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  height: 100%; /* Let the grid cell define the height */
}

/* Instead of manual height (763px), we tell the card 
   to take up 2 columns and 2 rows. 
*/
.collection-card.wide {
  grid-column: span 2;
  grid-row: span 2; 
}

.collection-card img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  object-position: top;
}

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

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,0,0.88) 0%, rgba(26,15,0,0.1) 50%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: var(--transition);
}

.collection-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.collection-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-height: 0;
  /* Ensure smooth transition for text appearing */
  margin: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
}

.collection-card:hover p { 
  max-height: 100px; 
  margin-top: 8px;
}

.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}

.collection-card:hover .collection-card-link { 
  opacity: 1; 
}


/* ─── SERVICES ───────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-card p { color: var(--ink-lt); font-size: 0.92rem; line-height: 1.7; }

/* ─── OCCASIONS CAROUSEL ─────────────────────────────────── */
.occasions { background: var(--ink); padding: 80px 0 60px; }
.occasions .section-header h2 { color: var(--white); }
.occasions .section-header p  { color: rgba(255,255,255,0.6); }
.occasions-wrapper { position: relative; }
.occasions-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0 24px 16px;
}
.occasions-row:active { cursor: grabbing; }
.occasions-row::-webkit-scrollbar { display: none; }
.occasion-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
@media (min-width: 900px) {
  .occasion-item { flex: 0 0 calc((100vw - 48px - 7 * 6px) / 8); max-width: 200px; }
}
.occasion-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.occasion-item:hover img { filter: brightness(0.85); transform: scale(1.06); }
.occasion-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 12px 16px;
  background: linear-gradient(to top, rgba(26,15,0,0.92), transparent);
  text-align: center;
}
.occasion-label span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.occasions-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(26,15,0,0.75);
  border: 1px solid rgba(200,155,60,0.4);
  color: var(--gold-lt);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.occasions-arrow:hover { background: var(--saffron); border-color: var(--saffron); }
.occasions-arrow.prev { left: 4px; }
.occasions-arrow.next { right: 4px; }
.occasions-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.occasions-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.occasions-dot.active { background: var(--gold-lt); width: 20px; border-radius: 3px; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--cream-dk); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-lt);
  opacity: 0.4;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; font-family: var(--font-serif);}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--ink); }
.testimonial-author span   { font-size: 0.78rem; color: var(--ink-lt); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(200,155,60,0.2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--saffron); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--saffron);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--ink-lt);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* ─── INSTAGRAM STRIP ────────────────────────────────────── */
.instagram-strip { background: var(--cream-dk); padding: 64px 0; text-align: center; }
.instagram-strip h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 8px; }
.instagram-strip p  { color: var(--ink-lt); margin-bottom: 32px; }
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 40px;
  transition: var(--transition);
}
.instagram-handle:hover { color: var(--maroon); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 960px;
  margin: 0 auto 32px;
}
.ig-post {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  cursor: pointer;
}
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-post:hover img { transform: scale(1.06); }
.ig-post-overlay {
  position: absolute; inset: 0;
  background: rgba(26,15,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post-overlay svg { color: white; }
.ig-post.video::after {
  content: '▶';
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.7rem;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  border-radius: 3px;
}
.ig-skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--cream) 25%, var(--cream-dk) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── HOMEPAGE RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
  .collection-grid            { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .collection-card.wide       { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
  .hero                       { min-height: 80vh; }
  .trust-bar-inner            { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2),
  .trust-item:nth-child(4)    { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2)    { border-bottom: 1px solid rgba(200,155,60,0.2); }
  .nisha-grid                 { grid-template-columns: 1fr; gap: 48px; }
  .nisha-img-badge            { bottom: -12px; right: -12px; }
  .services-grid              { grid-template-columns: 1fr; }
  .testimonials-grid          { grid-template-columns: 1fr; }
  .instagram-grid             { grid-template-columns: repeat(3, 1fr); }
  
  /* Collection logic for Tablet/Large Phone */
  .collection-grid            { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .collection-card.wide       { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 480px) {
  .collection-grid            { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .collection-card.wide       { grid-column: span 1; grid-row: span 1; }
  .trust-bar-inner            { grid-template-columns: 1fr; }
  .trust-item                 { border-right: none; border-bottom: 1px solid rgba(200,155,60,0.2); }
  
  /* Show text on mobile since there is no hover */
  .collection-card p          { max-height: 80px; margin-top: 8px; }
  .collection-card-link       { opacity: 1; }
}

/* -- claude 

@media (max-width: 1024px) {
  .collection-grid                      { grid-template-columns: repeat(2, 1fr); }
  .collection-card.wide                 { grid-column: span 2; height: 460px; }
  .collection-card:not(.wide)           { height: 300px; }
}
@media (max-width: 768px) {
  .hero                                 { min-height: 80vh; }
  .trust-bar-inner                      { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2),
  .trust-item:nth-child(4)              { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2)             { border-bottom: 1px solid rgba(200,155,60,0.2); }
  .nisha-grid                           { grid-template-columns: 1fr; gap: 48px; }
  .nisha-img-badge                      { bottom: -12px; right: -12px; }
  .services-grid                        { grid-template-columns: 1fr; }
  .testimonials-grid                    { grid-template-columns: 1fr; }
  .collection-grid                      { grid-template-columns: repeat(2, 1fr); }
  .collection-card.wide                 { height: 380px; }
  .collection-card:not(.wide)           { height: 260px; }
  .instagram-grid                       { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .collection-grid                      { grid-template-columns: 1fr; }
  .collection-card.wide                 { grid-column: span 1; height: 300px; }
  .collection-card:not(.wide)           { height: 260px; }
  .trust-bar-inner                      { grid-template-columns: 1fr; }
  .trust-item                           { border-right: none; border-bottom: 1px solid rgba(200,155,60,0.2); }
}
-- */