/* ============================================================
   MM FASHION — Premium Women's Ethnic Wear
   Main Stylesheet
   ------------------------------------------------------------
   Design system:
   - Navy (from logo)  : #14355C / deep #0E2138
   - Gold (from needle): #C8A15A / light #D8B679
   - Ivory / White     : #FDFCFA / #FFFFFF
   - Soft Gray         : #F5F6F8
   - Display type      : Playfair Display
   - Body type         : Poppins
   Signature: the "golden thread" — a fine gold line that weaves
   through the page, echoing the needle & thread in the logo.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --navy:        #14355C;
  --navy-deep:   #0E2138;
  --navy-soft:   #1B3B63;
  --gold:        #C8A15A;
  --gold-light:  #D8B679;
  --gold-pale:   #F0E4CE;
  --ivory:       #FDFCFA;
  --white:       #FFFFFF;
  --gray-bg:     #F5F6F8;
  --gray-line:   #E6E8EC;
  --text:        #2A3442;
  --text-muted:  #6B7686;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 30px rgba(20, 53, 92, 0.08);
  --shadow-lift: 0 18px 45px rgba(20, 53, 92, 0.14);
  --shadow-gold: 0 10px 30px rgba(200, 161, 90, 0.25);

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.25; font-weight: 600; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 15.5px;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head.center .section-eyebrow::after {
  content: "";
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

section { padding: 96px 0; position: relative; }
.bg-gray { background: var(--gray-bg); }
.bg-navy { background: linear-gradient(160deg, var(--navy-deep), var(--navy)); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .section-sub { color: rgba(255,255,255,0.72); }

/* ---------- 4. Signature: the golden thread ---------- */
.thread-divider {
  display: block;
  width: 100%;
  height: 70px;
  overflow: visible;
}
.thread-divider path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.65;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.2s var(--ease-lux);
}
.thread-divider.drawn path { stroke-dashoffset: 0; }
.thread-divider .thread-needle {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 0.6s ease 1.6s;
}
.thread-divider.drawn .thread-needle { opacity: 0.9; }

/* ---------- 5. Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux),
              background 0.35s, color 0.35s, border-color 0.35s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 16px 38px rgba(200,161,90,0.4); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); box-shadow: var(--shadow-lift); }

.btn-whatsapp { background: #1FA855; color: #fff; }
.btn-whatsapp:hover { background: #23BB5F; box-shadow: 0 14px 34px rgba(31,168,85,0.35); }

/* Button ripple (JS adds .ripple span) */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: ripple 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- 6. Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  position: relative;
  display: inline-block;
}
.preloader-mark::after {
  content: "";
  position: absolute;
  left: 0; bottom: -12px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: threadPulse 1.4s ease-in-out infinite;
}
.preloader-text {
  margin-top: 22px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
}
@keyframes threadPulse {
  0%, 100% { transform: scaleX(0.25); opacity: 0.5; }
  50%      { transform: scaleX(1);    opacity: 1; }
}

/* ---------- 7. Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.4s var(--ease-lux), background 0.4s, box-shadow 0.4s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(20,53,92,0.08);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img {
  height: 54px; width: 54px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s var(--ease-lux);
}
.brand:hover img { transform: rotate(-4deg) scale(1.05); }
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.4s;
}
.brand-name span { color: var(--gold); }
.site-header.scrolled .brand-name,
.site-header.solid .brand-name { color: var(--navy); }

/* Swap logo image based on header state (both rendered, one hidden) */
.brand .logo-dark { display: none; }
.site-header.scrolled .logo-light, .site-header.solid .logo-light { display: none; }
.site-header.scrolled .logo-dark,  .site-header.solid .logo-dark  { display: block; }

.nav-list { display: flex; align-items: center; gap: 34px; }
.nav-list a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.site-header.scrolled .nav-list a,
.site-header.solid .nav-list a { color: var(--text); }
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-lux);
}
.nav-list a:hover::after, .nav-list a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-list a:hover, .nav-list a.active { color: var(--gold); }

.nav-cta { margin-left: 8px; padding: 11px 24px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  position: relative;
  z-index: 1102;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-lux), opacity 0.3s, background 0.3s;
}
.site-header.scrolled .nav-toggle span,
.site-header.solid .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.open span { background: var(--navy) !important; }

/* ---------- 8. Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(200,161,90,0.16), transparent 60%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, #1A4270 100%);
  overflow: hidden;
  color: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 54px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-light);
}
.hero-stat .num sup { font-size: 18px; }
.hero-stat .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Hero visual: layered glass cards with logo emblem */
.hero-visual { position: relative; min-height: 460px; }
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main {
  width: 68%; height: 420px;
  right: 6%; top: 20px;
  animation: floatY 7s ease-in-out infinite;
}
.hero-card-accent {
  width: 44%; height: 260px;
  left: 0; bottom: 0;
  animation: floatY 8s ease-in-out 1.2s infinite;
}
.hero-glass {
  position: absolute;
  right: 0; bottom: 60px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatY 6s ease-in-out 0.6s infinite;
}
.hero-glass i { color: var(--gold-light); font-size: 22px; }
.hero-glass strong { display: block; font-size: 14px; }
.hero-glass small { color: rgba(255,255,255,0.7); font-size: 12px; }


/* --- Hero image slider (crossfade between real product photos) --- */
.hero-slider { position: absolute; }
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s var(--ease-lux), transform 6s linear;
}
.hero-slider img.active { opacity: 1; transform: scale(1); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Floating decorative shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.float-shape.ring {
  border: 1px solid rgba(200,161,90,0.5);
  background: transparent;
  animation: floatY 9s ease-in-out infinite;
}
.float-shape.dot {
  background: radial-gradient(circle, rgba(200,161,90,0.6), transparent 70%);
  animation: floatY 11s ease-in-out 2s infinite;
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- 9. About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-visual .frame img { transition: transform 1s var(--ease-lux); }
.about-visual:hover .frame img { transform: scale(1.05); }
.about-visual::before {
  content: "";
  position: absolute;
  inset: -22px auto auto -22px;
  width: 60%; height: 60%;
  border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -18px; bottom: 34px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 20px 26px;
  text-align: center;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
}
.about-badge .label { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

.about-points { margin-top: 30px; display: grid; gap: 18px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point i {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 15px;
}
.about-point strong { display: block; color: var(--navy); font-size: 15.5px; }
.about-point p { font-size: 14px; color: var(--text-muted); }

/* ---------- 10. Product Collections ---------- */
/* Four signature collection cards (2 x 2 on desktop) */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  text-align: left;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s;
}
.collection-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-lux);
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,33,56,0.05) 30%, rgba(14,33,56,0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.collection-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  font-weight: 600;
}
.collection-card h3 { color: var(--white); font-size: 21px; margin-bottom: 6px; }
.collection-cta {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-lux);
}
.collection-card:hover .collection-cta,
.collection-card:focus-visible .collection-cta { opacity: 1; transform: translateY(0); }

/* --- Collection gallery pages --- */
.collection-foot { margin-top: 30px; text-align: center; }

/* --- Product image grid inside a collection --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;              /* equal cards */
  background: var(--gray-bg);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  border: 1px solid var(--gray-line);
  /* smooth fade-up reveal (staggered via JS inline delay) */
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux),
              box-shadow 0.4s;
}
.product-card.shown { opacity: 1; transform: translateY(0); }
.product-card:hover { box-shadow: var(--shadow-lift); }
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-lux), opacity 0.5s;
  opacity: 0;                        /* fades in once loaded */
}
.product-card img.loaded { opacity: 1; }
.product-card:hover img { transform: scale(1.07); }
/* Elegant hover overlay with "view image" affordance */
.product-card .peek {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(14,33,56,0) 45%, rgba(14,33,56,0.55));
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .peek,
.product-card:focus-visible .peek { opacity: 1; }
.product-card .peek span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(253,252,250,0.92);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-lux);
}
.product-card:hover .peek span { transform: translateY(0); }
.product-card .peek i { color: var(--gold); }

/* ---------- 11. Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.45s var(--ease-lux), background 0.45s, border-color 0.45s;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,161,90,0.5);
}
.why-card i {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--navy-deep);
  background: linear-gradient(130deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
}
.why-card h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.68); font-size: 14px; }

/* ---------- 12. Gallery (masonry) ---------- */
.gallery-masonry { columns: 3; column-gap: 20px; }
.gallery-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  break-inside: avoid;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.gallery-item img { transition: transform 0.8s var(--ease-lux); width: 100%; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 55%, rgba(14,33,56,0.8));
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.45s;
}
.gallery-item:hover .cap { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 20, 35, 0.94);
  display: grid; place-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(88vw, 900px);
  max-height: 84vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.45s var(--ease-lux);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(200,161,90,0.5); }
.lightbox-prev { left: 26px; }
.lightbox-next { right: 26px; }

/* ---------- 13. Testimonials ---------- */
.testi-wrap { position: relative; max-width: 860px; margin-inline: auto; }
.testi-track { overflow: hidden; border-radius: var(--radius-lg); }
.testi-slides { display: flex; transition: transform 0.7s var(--ease-lux); }
.testi-card {
  flex: 0 0 100%;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 48px 54px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}
.testi-card blockquote {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 26px;
}
.testi-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 18px; }
.testi-card .who strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 17px; }
.testi-card .who span { font-size: 13px; color: var(--text-muted); }


/* Product photo shown with each testimonial */
.who-thumb {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--gold-pale);
  box-shadow: var(--shadow-soft);
}

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testi-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--gray-line);
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: background 0.3s, color 0.3s;
}
.testi-arrow:hover { background: var(--navy); color: var(--white); }
.testi-arrow.prev { left: -66px; }
.testi-arrow.next { right: -66px; }

/* ---------- 14. Business info ---------- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.biz-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s, border-color 0.4s;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--gold-pale); }
.biz-card i {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 18px;
}
.biz-card h3 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-body); font-weight: 600; margin-bottom: 6px; }
.biz-card p, .biz-card a { color: var(--navy); font-size: 15.5px; font-weight: 500; word-break: break-word; }
.biz-card a:hover { color: var(--gold); }

/* ---------- 15. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-channels { display: grid; gap: 16px; align-content: start; }
.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s, border-color 0.4s;
}
.channel:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); border-color: var(--gold-pale); }
.channel i {
  width: 48px; height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 19px;
  color: var(--white);
}
.channel.wa i { background: #1FA855; }
.channel.mail i { background: var(--navy); }
.channel.ig i { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.channel.fb i { background: #1877F2; }
.channel strong { display: block; color: var(--navy); font-size: 15px; }
.channel span { font-size: 13px; color: var(--text-muted); }

.map-embed {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow-soft);
}
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-soft);
}
.contact-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,161,90,0.14);
}
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #EAF7EF;
  border: 1px solid #BFE6CD;
  color: #1E7A43;
  font-size: 14px;
}
.form-success.show { display: block; }

/* ---------- 16. CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(200,161,90,0.2), transparent 60%),
    linear-gradient(140deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 15px; }


/* ---------- 16b. Instagram feed grid ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ig-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-soft);
  display: block;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.ig-item:hover img { transform: scale(1.1); }
.ig-hover {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(14,33,56,0.55);
  color: var(--white);
  font-size: 26px;
  opacity: 0;
  transition: opacity 0.4s;
}
.ig-item:hover .ig-hover,
.ig-item:focus-visible .ig-hover { opacity: 1; }

/* CTA band with subtle product-photo background */
.cta-band-img { position: relative; }
.cta-band .cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
}
.cta-band-img > *:not(.cta-bg) { position: relative; z-index: 1; }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-brand img { height: 62px; width: 62px; border-radius: 14px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  transition: background 0.35s, transform 0.35s var(--ease-lux), border-color 0.35s, color 0.35s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-4px);
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  align-items: flex-start;
}
.footer-contact i { color: var(--gold); margin-top: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold-light); }

/* ---------- 18. Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1FA855;
  color: #fff;
  display: grid; place-items: center;
  font-size: 26px;
  z-index: 900;
  box-shadow: 0 12px 30px rgba(31,168,85,0.4);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s;
}
.wa-float:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 18px 40px rgba(31,168,85,0.5); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(31,168,85,0.6);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- 19. Inner-page hero (legal/about) ---------- */
.page-hero {
  padding: 170px 0 90px;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(200,161,90,0.14), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin-inline: auto; font-size: 15.5px; }
.breadcrumb {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; }

/* ---------- 20. Legal content ---------- */
.legal-wrap { max-width: 820px; margin-inline: auto; }
.legal-updated {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 36px;
}
.legal-wrap h2 {
  font-size: 24px;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-line);
  position: relative;
}
.legal-wrap h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 56px; height: 2px;
  background: var(--gold);
}
.legal-wrap h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-wrap p { margin-bottom: 14px; color: var(--text); font-size: 15px; }
.legal-wrap ul {
  list-style: none;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.legal-wrap ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
}
.legal-wrap ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  color: var(--gold);
  font-size: 12px;
}
.legal-wrap a { color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gold); }
.legal-wrap a:hover { color: var(--gold); }
.legal-contact-card {
  margin-top: 40px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.legal-contact-card h3 { margin-top: 0; }

/* ---------- 21. AOS-free reveal fallback ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Back-to-top */
.to-top {
  position: fixed;
  right: 24px; bottom: 94px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
  z-index: 890;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-4px); color: var(--gold); }
