/* ==========================================================================
   KHUSHI CREATIONS — STYLESHEET
   Design tokens -> Base -> Layout -> Components -> Utilities -> Responsive
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand palette */
  --color-primary: #8B1E3F;
  --color-primary-dark: #6C1631;
  --color-primary-tint: #F6E9ED;
  --color-secondary: #C89B3C;
  --color-secondary-light: #E8D5A3;
  /* Same gold hue, darkened so small text meets WCAG AA (4.5:1) on white/cream */
  --color-secondary-deep: #8A6B24;
  --color-bg: #FFFFFF;
  --color-bg-light: #FAF8F6;
  --color-text: #222222;
  --color-muted: #666666;
  --color-border: #ECECEC;
  --color-on-dark: #F6EFE7;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.4rem, 5vw + 1rem, 4.4rem);
  --fs-h2: clamp(1.9rem, 3vw + 1rem, 2.85rem);
  --fs-h3: clamp(1.15rem, 1vw + 0.9rem, 1.4rem);
  --fs-lead: clamp(1.05rem, 0.6vw + 0.9rem, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8rem;

  /* Rhythm */
  --space-section: clamp(4rem, 6vw, 7rem);
  --radius-sm: 2px;
  --radius-md: 4px;
  --container-w: 1200px;
  --container-narrow: 760px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; }
p { margin: 0 0 1em; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--color-secondary-deep);
  outline-offset: 3px;
}

/* Dark sections need a lighter ring to keep 3:1 non-text contrast */
.contact-cta :focus-visible,
.footer :focus-visible {
  outline-color: var(--color-secondary-light);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.8em 1.2em;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); }
.section--tint { background: var(--color-bg-light); }

.section__title {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: 0.6rem;
  max-width: 24ch;
  margin-inline: auto;
}
.section__title--left { text-align: left; margin-inline: 0; max-width: none; }
.section__title--on-dark { color: var(--color-on-dark); }

.section__lead {
  text-align: center;
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  font-size: var(--fs-lead);
}
.section__lead--left { text-align: left; margin: -0.5rem 0 2rem; max-width: 60ch; }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary-deep);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--on-dark { color: var(--color-secondary-light); }

.link-arrow {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.link-arrow:hover { border-color: currentColor; }

/* ---------- SIGNATURE MOTIF ---------- */
.motif-mark, .hero__motif, .about__motif, .contact-cta__motif {
  color: var(--color-secondary);
}
.divider-motif { color: var(--color-border); width: 100%; height: 20px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.75em 1.5em;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn .icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn--lg { padding: 0.9em 2em; font-size: 1rem; }

.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }

.btn--secondary { background: var(--color-secondary); color: #2a2a2a; }
.btn--secondary:hover { background: #b5893a; }

.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }

.btn--outline-light { background: transparent; color: var(--color-on-dark); border-color: rgba(246,239,231,0.5); }
.btn--outline-light:hover { background: rgba(246,239,231,0.12); border-color: var(--color-on-dark); }

.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.motif-mark { width: 26px; height: 26px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--color-primary); }
.nav__brand-tag { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--color-text); display: block; }

.nav__menu { display: flex; align-items: center; gap: clamp(0.8rem, 1.5vw, 1.5rem); }
.nav__links { display: flex; align-items: center; gap: clamp(0.6rem, 1.1vw, 1.2rem); flex-wrap: nowrap; flex-shrink: 0; }
.nav__links li { flex-shrink: 0; white-space: nowrap; }
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.3rem;
  white-space: nowrap;
  display: inline-block;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--color-secondary);
  transition: width var(--dur) var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__actions .btn {
  height: 42px;
  padding: 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero__frame {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { max-width: 44rem; }
.hero__title {
  font-size: var(--fs-h1);
  font-style: italic;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1.1rem;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--color-muted);
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: var(--fs-small);
  color: var(--color-muted);
}
.hero__meta li { position: relative; padding-left: 1.1rem; }
.hero__meta li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.hero__visual { position: relative; height: clamp(320px, 46vw, 520px); }
.hero__panel {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  overflow: hidden;
}
.hero__panel--one {
  inset: 0 12% 10% 0;
  background: url('../assets/products/bridal_lehenga_maroon_1786781989512.jpg') center/cover no-repeat;
  border: 1px solid var(--color-border);
}
.hero__panel--two {
  inset: 14% 0 0 18%;
  background: url('../assets/products/wedding_lehenga_gold_1786782053287.jpg') center/cover no-repeat;
  border: 2px solid #fff;
}
.hero__motif {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: 30%;
  height: auto;
  opacity: 0.9;
}
.hero__divider { padding-bottom: 1.5rem; }

/* ---------- TABS ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}
.tab {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.55em 1.3em;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-muted);
  transition: all var(--dur) var(--ease);
}
.tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.tab.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ---------- PRODUCT GRID / CARD ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.product-grid__empty { text-align: center; color: var(--color-muted); padding-block: 2rem; }

.product-card {
  background: #1c1215;
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 12px 30px rgba(28, 18, 21, 0.2);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.product-card.is-visible { opacity: 1; transform: translateY(0); }
.product-card:hover {
  box-shadow: 0 20px 45px rgba(28, 18, 21, 0.45);
  border-color: var(--color-secondary);
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #2a1b20;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--color-secondary);
  color: #2a2a2a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: var(--radius-sm);
}

.product-card__quick {
  position: absolute;
  right: 0.75rem; bottom: 0.75rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(28, 18, 21, 0.85);
  border: 1px solid var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.product-card:hover .product-card__quick,
.product-card__quick:focus-visible { opacity: 1; transform: translateY(0); }
.product-card__quick svg { width: 18px; height: 18px; color: var(--color-secondary-light); }

.product-card__body {
  background: #1c1215;
  padding: 1.1rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.product-card__cat {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary-light);
  font-weight: 700;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}
.product-card__desc {
  font-size: 0.85rem;
  color: rgba(246, 239, 231, 0.78);
  flex: 1;
}

.product-card__cta {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-secondary-light);
  border-top: 1px solid rgba(246, 239, 231, 0.15);
  padding-top: 0.8rem;
}
.product-card__cta svg { width: 16px; height: 16px; fill: var(--color-secondary); }
.product-card__cta:hover { color: #FFFFFF; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__visual { position: relative; aspect-ratio: 4/5; }
.about__frame {
  position: absolute; inset: 0;
  background: url('../assets/products/indowestern_gown_emerald_1786782176400.jpg') center/cover no-repeat;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.about__motif { position: absolute; width: 40%; bottom: 8%; right: 8%; opacity: 0.5; }
.about__content p { color: var(--color-muted); max-width: 52ch; }
.about__stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: 2rem; color: var(--color-primary); font-weight: 700; }
.stat__label { font-size: 0.8rem; color: var(--color-muted); max-width: 12ch; }

/* ---------- FEATURE GRID ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.feature-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature-card:hover { border-color: var(--color-secondary); transform: translateY(-4px); }
.feature-card__icon { width: 34px; height: 34px; color: var(--color-primary); margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--color-muted); margin: 0; }

/* ---------- PROCESS ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
}
.process__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-secondary-deep);
  margin-bottom: 0.6rem;
}
.process__step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.process__step p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial {
  margin: 0;
  padding: 2rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-secondary);
}
.testimonial blockquote { margin: 0 0 1rem; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.testimonial figcaption { font-size: 0.82rem; color: var(--color-muted); font-weight: 600; }

/* ---------- INSTAGRAM ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(34,34,34,0.55));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.insta-tile:hover::after { opacity: 1; }

/* ---------- LOCATION ---------- */
.location { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location__content address { color: var(--color-muted); margin-bottom: 1rem; line-height: 1.7; }
.location__content .link-arrow { display: inline-block; margin-bottom: 1.5rem; }
.location__map iframe { width: 100%; height: 380px; border-radius: var(--radius-md); border: 1px solid var(--color-border); }

/* ---------- ACCORDION (FAQ) ---------- */
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion__trigger::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-secondary-deep);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.accordion__trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion__panel { padding-bottom: 1.35rem; color: var(--color-muted); max-width: 65ch; }

/* ---------- CONTACT CTA ---------- */
.contact-cta {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  text-align: center;
}
.contact-cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.contact-cta__motif {
  position: absolute;
  top: -10%;
  right: -4%;
  width: 260px;
  height: auto;
  color: rgba(246,239,231,0.08);
}
.contact-cta__lead { color: rgba(246,239,231,0.85); max-width: 46ch; margin-bottom: 2rem; }
.contact-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- FOOTER ---------- */
.footer { background: #1c1215; color: rgba(246,239,231,0.82); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246,239,231,0.12);
}
.footer__brand .motif-mark { color: var(--color-secondary); margin-bottom: 0.75rem; }
.footer__name { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin: 0 0 0.3rem; }
.footer__tag { font-size: 0.85rem; color: rgba(246,239,231,0.6); }
.footer__col h3 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-secondary-light); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.9rem; opacity: 0.85; transition: opacity var(--dur) var(--ease); }
.footer__col a:hover { opacity: 1; }
.footer__col address { font-size: 0.9rem; opacity: 0.85; line-height: 1.7; margin-bottom: 0.6rem; }
.footer__bottom { padding-block: 1.5rem; font-size: 0.8rem; opacity: 0.55; text-align: center; }

/* ---------- FLOATING WHATSAPP ---------- */
.fab-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  z-index: 400;
  transition: transform var(--dur) var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp .icon { width: 28px; height: 28px; color: #fff; }

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(28,18,21,0.55); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative;
  background: #fff;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  animation: modal-in 0.35s var(--ease);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-muted);
}
.modal__close:hover { color: var(--color-primary); border-color: var(--color-primary); }
.modal__title { font-size: 1.5rem; margin-bottom: 0.4rem; }
.modal__sub { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.consult-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--color-text); }
.field input, .field select, .field textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.7em 0.85em;
  background: var(--color-bg-light);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-secondary);
  background: #fff;
}
.field textarea { resize: vertical; }

.modal__panel--product { max-width: 640px; }
.qv { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.qv__media { aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; background: var(--color-bg-light); }
.qv__media img { width: 100%; height: 100%; object-fit: cover; }
.qv__cat { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-secondary-deep); font-weight: 700; }
.qv__name { font-family: var(--font-display); font-size: 1.4rem; margin: 0.3rem 0 0.75rem; }
.qv__desc { color: var(--color-muted); margin-bottom: 1.5rem; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(200, 155, 60, 0.3);
}

/* ---------- LANGUAGE TOGGLE & NAVBAR EXTENSIONS ---------- */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--color-secondary-deep);
  color: var(--color-secondary-deep);
  padding: 0.3em 0.7em;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.lang-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* ---------- SEARCH & FILTERS BAR ---------- */
.collections-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.search-bar-wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}
.search-bar-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-bg-light);
  font-size: 0.9rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.search-bar-wrap input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
  background: #fff;
  outline: none;
}
.search-bar-wrap .search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-muted);
  pointer-events: none;
}
.price-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.price-btn {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.4em 1em;
  font-size: 0.8rem;
  border-radius: 20px;
  color: var(--color-muted);
  font-weight: 500;
  transition: all var(--dur) var(--ease);
}
.price-btn:hover, .price-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ---------- PRODUCT CARD EXTENSIONS ---------- */
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
.product-card__fabric {
  font-size: 0.7rem;
  color: var(--color-secondary-light);
  background: rgba(246, 239, 231, 0.08);
  padding: 0.15em 0.5em;
  border-radius: 2px;
  border: 1px solid rgba(200, 155, 60, 0.3);
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(246, 239, 231, 0.15);
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-secondary);
}
.product-card__media { position: relative; overflow: hidden; }
.product-card__media img {
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

/* WISHLIST HEART BUTTON */
.btn-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-wishlist * { pointer-events: none; }
.btn-wishlist:hover { transform: scale(1.12); background: #fff; }
.btn-wishlist .heart-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  transition: fill 0.2s ease;
}
.btn-wishlist.is-active {
  background: #FFF0F4 !important;
  border: 1.5px solid var(--color-primary) !important;
}
.btn-wishlist.is-active .heart-icon {
  fill: var(--color-primary) !important;
  stroke: var(--color-primary) !important;
}

/* ---------- FLOATING WISHLIST FAB ---------- */
.fab-wishlist {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 800;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}
.fab-wishlist:hover { transform: scale(1.08); }
.fab-wishlist .heart-icon { width: 22px; height: 22px; fill: var(--color-primary); }
.wishlist-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.wishlist-count[hidden] {
  display: none !important;
}

/* WISHLIST TOAST NOTIFICATION */
.wishlist-toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.35);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wishlist-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WISHLIST DRAWER ITEMS */
.wishlist-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}
.wishlist-item__img { width: 56px; height: 72px; object-fit: cover; border-radius: 4px; }
.wishlist-item__info { flex: 1; }
.wishlist-item__cat { font-size: 0.7rem; color: var(--color-secondary-deep); font-weight: 600; text-transform: uppercase; }
.wishlist-item__title { font-size: 0.9rem; margin: 0.1rem 0; }
.wishlist-item__price { font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }
.wishlist-item__remove { background: none; border: none; font-size: 1.2rem; color: var(--color-muted); cursor: pointer; }

/* ---------- MEASUREMENT GUIDE STYLES ---------- */
.measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-block: 1.5rem;
}
.measurement-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--color-bg-light);
}
.measurement-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--color-primary); margin-bottom: 0.3rem; }
.measurement-card p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* ---------- GOOGLE REVIEWS BADGE ---------- */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.stars { color: #F4B400; letter-spacing: 2px; }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .testimonial-track { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    gap: 1.75rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    border-bottom: 1px solid var(--color-border);
  }
  .nav__menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links { flex-direction: column; gap: 1.1rem; }
  .nav__actions { flex-direction: column; align-items: stretch; width: 100%; }

  .hero__frame { grid-template-columns: 1fr; }
  .hero__visual { order: -1; height: 280px; }
  .about { grid-template-columns: 1fr; }
  .about__visual { order: -1; aspect-ratio: 16/9; }
  .location { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(5) { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .section__head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .consult-form { grid-template-columns: 1fr; }
  .qv { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .process { grid-template-columns: 1fr; }
  .process__step:nth-child(5) { grid-column: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .contact-cta__actions { flex-direction: column; align-items: stretch; width: 100%; }
}

/* Touch devices have no hover state — keep quick-view reachable without it */
@media (hover: none) {
  .product-card__quick { opacity: 1; transform: translateY(0); }
}
