/* =====================================================
   D'Luxe Strands — pages.css
   Styles for product.html, bespoke.html, consultation.html
   ===================================================== */

/* ---------- Page Transition ---------- */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-enter {
  animation: pageFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---------- Video Hero ---------- */
.video-hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.6) saturate(1.1);
}
.video-overlay {
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.75) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.92) 100%);
}
.video-hero .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 5%;
}
.video-hero .page-hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 0.4em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.video-hero .page-hero-content .lead {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.4rem;
}
.video-hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 160px 5% 80px;
}
.page-hero-tall { min-height: 72vh; }

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.04);
  animation: heroZoom 12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-hero-bg--bespoke {
  background-image: url('./wigs-picture.jpeg');
}
.page-hero-bg--product {
  background-image: url('./three-african-women-with-diverse-hair-colors.jpg');
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.9) 100%),
              linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.75) 100%);
}
.page-hero-content {
  position: relative;
  max-width: 760px;
  color: var(--ivory);
}
.page-hero-content h1 { margin-bottom: 0.5em; }
.page-hero-content .lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.82);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ---------- Filter Bar ---------- */
.filter-bar-section {
  padding: 32px 0 0;
  background: var(--bg);
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 10px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}

/* ---------- Product Card Enhancements ---------- */
.product-img {
  height: 480px;
  background-size: cover;
  background-position: top;
  position: relative;
  overflow: hidden;
  transition: transform 0.8s var(--ease);
}

/* Collection card typography (matches product.html button-based cards) */
.card.product .card-body {
  padding: 22px 22px 26px;
}
.card.product .card-body h3 {
  margin: 10px 0 6px;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.card.product .card-body p.muted {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--muted);
}
.card.product .card-meta-row {
  margin: 0 0 10px;
}
.card.product .tag {
  font-size: 0.62rem;
  padding: 3px 10px;
}
.card.product .price-row {
  margin-top: 12px;
}
.card.product .btn.btn-gold.btn-sm {
  padding: 10px 18px;
  font-size: 0.68rem;
  border-radius: 4px;
  letter-spacing: 0.22em;
}

/* tap hint (mobile-only) */
.card.product .tap-hint {
  display: none;
}

/* If overlay is on, keep text readable */
.card.product .overlay-label {
  white-space: nowrap;
}

/* Product image backgrounds — moved from inline styles */
.product-img__adeola-bob { background-image: url('./woman-with-long-hair-with-black-wig-that-says-hairline.png'); }
.product-img__iyanu-curls { background-image: url('./deep-wave-lace-front-wig-alt.jpg'); }
.product-img__folake-straight { background-image: url('./hd-wallpaper-background-digital-art.jpg'); }
.product-img__zara-pixie { background-image: url('./blond-woman-with-long-straight-hair-black-top-posing-picture.jpg'); }
.product-img__amara-waves { background-image: url('./woman-with-black-hair-alt.jpg'); }
.product-img__burgundy-muse { background-image: url('./long-straight-black-lace-front-wig.jpg'); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.card.product:hover .product-overlay { opacity: 1; }
.overlay-label {
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(245,240,232,0.5);
  padding: 12px 24px;
  border-radius: 2px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.card.product:hover .overlay-label { transform: translateY(0); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
}
.new-badge { background: var(--burgundy); color: var(--ivory); }
.color-badge { background: #4a1942; color: var(--ivory); }

.card-meta-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.68rem;
  cursor: pointer;
}

/* ---------- Product Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 860px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.35s ease;
  margin: auto;
}
.modal-backdrop.open .modal {
  transform: scale(1);
}
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
  display: grid; place-items: center;
  font-size: 1.1rem;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}
.modal-close:hover { background: var(--gold); color: var(--obsidian); }
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img {
  min-height: 460px;
  background-size: cover;
  background-position: center top;
  border-radius: 12px 0 0 12px;
}
.modal-info {
  padding: 44px 32px;
}
.modal-info h2 { margin-bottom: 0.3em; }
.modal-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.modal-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.modal-price-row .price { font-size: 1.4rem; }

.modal-care .eyebrow {
  margin-top: 24px;
}

/* Tablet */
@media (max-width: 960px) {
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img { min-height: 340px; border-radius: 12px 12px 0 0; }
  .modal-info { padding: 24px 22px 32px; }
}

/* Mobile — no max-height, backdrop scrolls so nothing gets cut off */
@media (max-width: 600px) {
  .modal-backdrop { padding: 16px; align-items: flex-start; }
  .modal { border-radius: 12px; }
  .modal-img { min-height: 260px; border-radius: 12px 12px 0 0; }
  .modal-info { padding: 16px 16px 32px; }
  .modal-price-row { flex-direction: column; align-items: stretch; }
  .modal-price-row .btn { width: 100%; text-align: center; }
}







  /* ── WIG SLIDER (3D Coverflow) ── */
  .wig-section {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    padding: 80px 0 70px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .wig-section__wave { display: none; }
  .wig-section__bottom { display: none; }

  .wig-section__heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 24px;
  }
  .wig-section__heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .wig-section__heading h2 em { color: var(--gold); font-style: italic; }
  .wig-section__heading p {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ── Stage (3D context) ── */
  .stage {
    width: 100%;
    max-width: 900px;
    height: 400px;
    position: relative;
    perspective: 1000px;
    perspective-origin: 50% 40%;
    margin: 0 auto;
  }

  /* ── Track ── */
  .track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Cards ── */
  .cf-card {
    position: absolute;
    width: 260px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition:
      transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    border: 1px solid var(--border);
    -webkit-user-select: none;
     user-select: none;
  }

  /* Card inner layers */
  .cf-card .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
  }
  .cf-card:hover .card-bg { transform: scale(1.04); }

  .cf-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,10,10,0.85) 0%,
      rgba(10,10,10,0.25) 50%,
      transparent 100%
    );
  }

  .cf-card .card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(245,240,232,0.08) 0%,
      transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cf-card.active .card-shine { opacity: 1; }

  .cf-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    transform: translateY(6px);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cf-card.active .card-content { transform: translateY(0); }

  .cf-card .card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    border: 1px solid rgba(245,240,232,0.2);
    color: var(--gold);
  }

  .cf-card .card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 4px;
  }

  .cf-card .card-sub {
    font-size: 12px;
    color: rgba(245,240,232,0.5);
    letter-spacing: 0.02em;
  }

  /* Active card glow */
  .cf-card.active {
    box-shadow:
      0 0 0 1px rgba(201,168,76,0.4),
      0 30px 80px -10px rgba(0,0,0,0.7),
      0 0 60px -20px rgba(201,168,76,0.35);
  }

  /* Reflection */
  .cf-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5%;
    right: 5%;
    height: 30%;
    background: inherit;
    border-radius: 18px;
    transform: scaleY(-1) translateY(100%);
    opacity: 0.12;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
  }

  /* ── Caption ── */
  .caption {
    margin-top: 28px;
    text-align: center;
    min-height: 44px;
  }
  .caption-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
  }
  .caption-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.4s 0.08s;
  }
  .caption.visible .caption-title,
  .caption.visible .caption-sub {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Controls ── */
  .controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    justify-content: center;
  }

  .arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(245,240,232,0.12);
    background: rgba(245,240,232,0.04);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.15s; 
    -webkit-backdrop-filter: blur(10px);
     backdrop-filter: blur(10px);
     flex-shrink: 0;
  }
  .arrow-btn:hover {
    background: rgba(201,168,76,0.18);
    border-color: rgba(201,168,76,0.5);
    transform: scale(1.08);
  }
  .arrow-btn:active { transform: scale(0.94); }
  .arrow-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* Dots */
  .dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245,240,232,0.2);
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
  }
  .dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 3px;
  }

  /* Auto-play progress ring */
  .progress-ring-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  .progress-ring-wrap svg {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
  }
  .progress-ring-bg { stroke: rgba(245,240,232,0.08); }
  .progress-ring-fill {
    stroke: var(--gold);
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.1s linear;
    stroke-linecap: round;
  }
  .play-pause-btn {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: none;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .play-pause-btn:hover { background: rgba(201,168,76,0.3); }
  .play-pause-btn svg { width: 14px; height: 14px; fill: currentColor; }

  @media (max-width: 768px) {
    .stage { height: 360px; }
    .cf-card { width: 220px; height: 280px; }
    .arrow-btn { width: 40px; height: 40px; }
  }

  @media (max-width: 600px) {
    .stage { height: 320px; }
    .cf-card { width: 180px; height: 240px; }
    .controls { gap: 12px; }
    .cf-card .card-content { padding: 16px 14px; }
    .cf-card .card-title { font-size: 18px; }
  }











/* ---------- Process Steps ---------- */
.process-steps {
  max-width: 760px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--muted); }
.process-connector {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 12px 0 12px 39px;
  opacity: 0.4;
}



 /* === GRID === */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }
 
    .grid-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
 
    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      filter: brightness(0.92);
    }
 
    .grid-item:hover img {
      transform: scale(1.06);
      filter: brightness(1);
    }
 
    /* Overlay with brand watermark on hover */
    .grid-item .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(10,10,10,0.6) 0%,
        transparent 50%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }
 
    .grid-item:hover .overlay {
      opacity: 1;
    }
 
    .overlay-text {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      color: #c9a96e;
      text-transform: uppercase;
    }
 
    /* Gold border accent on hover */
    .grid-item::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1.5px solid #c9a96e;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
 
    .grid-item:hover::after {
      opacity: 0.5;
    }
 
    /* ── GRID PLACEMENT ── */
 
    /* Item 1: Straight hair / blue top — large portrait left */
    .item-1 {
      grid-column: 1 / 6;
      grid-row: 1 / 3;
      height: 620px;
    }
 
    /* Item 2: Body wave / pink top — tall center-left */
    .item-2 {
      grid-column: 6 / 9;
      grid-row: 1 / 2;
      height: 300px;
    }
 
    /* Item 3: Curly hair / black outfit — wide center-right */
    .item-3 {
      grid-column: 9 / 13;
      grid-row: 1 / 2;
      height: 300px;
    }
 
    /* Item 4: Wig install / olive top — landscape bottom center */
    .item-4 {
      grid-column: 6 / 10;
      grid-row: 2 / 3;
      height: 308px;
    }
 
    /* Item 5: Kinky texture close-up — square bottom right */
    .item-5 {
      grid-column: 10 / 13;
      grid-row: 2 / 3;
      height: 308px;
    }
 
    /* Item 6: Model body wave / boutique — full width banner */
    .item-6 {
      grid-column: 1 / 13;
      grid-row: 3 / 4;
      height: 380px;
    }


/* ---------- Pricing Cards ---------- */
.pricing-card { position: relative; }
.pricing-card .check-list {
  text-align: left;
  margin-top: 20px;
}
.pricing-card .btn {
  margin-top: 24px;
  display: block;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  margin: 12px 0 6px;
  line-height: 1;
}
.pricing-price span { font-size: 1.2rem; opacity: 0.7; }
.pricing-featured {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--obsidian);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--burgundy) 0%, #4a1030 100%);
  padding: 80px 5%;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--ivory); margin-bottom: 8px; }
.cta-banner .muted { color: rgba(245,240,232,0.7); }

/* ---------- Booking Form ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Experience Cards ---------- */
.experience-card { text-align: center; }
.experience-card .check-list {
  margin-top: 16px;
  text-align: left;
}
.experience-card .check-list li { justify-content: flex-start; }

/* ---------- Stagger animation for grid items ---------- */
@media (min-width: 721px) {
  .grid .reveal:nth-child(1) { transition-delay: 0s; }
  .grid .reveal:nth-child(2) { transition-delay: 0.1s; }
  .grid .reveal:nth-child(3) { transition-delay: 0.2s; }
  .grid .reveal:nth-child(4) { transition-delay: 0.05s; }
  .grid .reveal:nth-child(5) { transition-delay: 0.15s; }
  .grid .reveal:nth-child(6) { transition-delay: 0.25s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .page-hero { min-height: 55vh; padding: 110px 5% 50px; }
  .page-hero-tall { min-height: 65vh; }
  .page-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero-content .lead { font-size: 0.95rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 5%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .masonry-grid { grid-template-columns: 1fr; }
  .masonry-item.tall { grid-row: span 1; }
  .process-step { grid-template-columns: 50px 1fr; gap: 14px; }
  .step-number { font-size: 1.8rem; }
  /* Remove overlay on mobile — no hover on touch */
  .product-overlay { display: none; }
  /* Add tap indicator on mobile - positioned at top right of card-body */
  .card.product .tap-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .card.product .tap-hint i {
    font-size: 0.5rem;
    transition: transform 0.3s ease;
  }
  .card.product .product-link:active .tap-hint i {
    transform: translateX(3px);
  }
  /* Filter */
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 12px; font-size: 0.62rem; letter-spacing: 0.15em; }
  /* Product image height */
  .product-img { height: 320px; }
  /* Card body */
  .card-body { padding: 16px 16px 20px; }
  .card-body h3 { font-size: 1.1rem; }
  /* Booking */
  .booking-grid { grid-template-columns: 1fr; }
  /* Section padding */
  .section { padding: clamp(50px, 8vw, 80px) 0; }
  .section-head { margin-bottom: 40px; }
}

/* Hide tap-hint on desktop - only show on mobile */
@media (min-width: 721px) {
  .card.product .tap-hint {
    display: none;
  }
}

/* ---------- Spacing Utilities ---------- */
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }

/* ---------- Mobile touch fixes ---------- */
.product-link, .filter-btn, .btn, .raw-nav-btn { touch-action: manipulation; }

/* product-link is now a button — reset default button styles */
.product-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

/* ---------- Raw Hair Page ---------- */
.raw-lengths {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 16px;
}
.length-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
}
.price-unit {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  margin-left: 2px;
}

/* Bundle packages */
.bundle-pkg { position: relative; }
.bundle-pkg-featured {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}
.pkg-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--obsidian);
  font-size: 1.4rem;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-top: 16px;
}

/* ---------- Raw Hair Slider ---------- */
.raw-slider-wrap {
  position: relative;
  padding: 0 32px 52px;
}
.raw-slider {
  border-radius: 12px;
}
.raw-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.raw-slide.active {
  display: grid;
  animation: slideIn 0.5s var(--ease) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.raw-slide-img {
  min-height: 520px;
  background-size: cover;
  background-position: top;
}
.raw-slide-info {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.raw-slide-tag {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.raw-slide-info h3 {
  font-size: 2rem;
  margin: 0;
  line-height: 1.15;
}
.raw-slide-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}
.raw-slide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 12px;
}
.raw-slide-footer .price { font-size: 1.4rem; }

/* Nav buttons */
.raw-nav-btn {
  position: absolute;
  top: calc(50% - 26px);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--obsidian);
  display: grid; place-items: center;
  font-size: 1rem;
  z-index: 10;
  box-shadow: var(--shadow-gold);
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}
.raw-nav-btn:hover { background: var(--gold-soft); }
.raw-prev { left: -26px; }
.raw-next { right: -26px; }

/* Dots */
.raw-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}
.raw-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  padding: 0;
}
.raw-dots button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .raw-slide { grid-template-columns: 1fr; }
  .raw-slide-img { min-height: 320px; }
  .raw-slide-info { padding: 32px 28px; }
  .raw-prev { left: 0; }
  .raw-next { right: 0; }
}
@media (max-width: 600px) {
  .raw-slider-wrap { padding: 0 0 52px; }
  .raw-slide-img { min-height: 240px; }
  .raw-slide-info { padding: 20px 16px 28px; }
  .raw-slide-info h3 { font-size: 1.4rem; }
  .raw-slide-footer { flex-direction: column; align-items: flex-start; }
  .raw-slide-footer .btn { width: 100%; text-align: center; }
  .raw-nav-btn { width: 40px; height: 40px; font-size: 0.85rem; top: auto; bottom: 56px; }
  .raw-prev { left: 0; }
  .raw-next { right: 0; }
}


    /* Responsive */
    @media (max-width: 900px) {
      .gallery-section { padding: 40px 20px 60px; }
 
      .photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
 
      .item-1 { grid-column: 1 / 2; grid-row: 1; height: 320px; }
      .item-2 { grid-column: 2 / 3; grid-row: 1; height: 320px; }
      .item-3 { grid-column: 1 / 2; grid-row: 2; height: 280px; }
      .item-4 { grid-column: 2 / 3; grid-row: 2; height: 280px; }
    /*  .item-5 { grid-column: 1 / 2; grid-row: 3; height: 260px; }
      .item-6 { grid-column: 2 / 3; grid-row: 3; height: 260px; } */
    }
 
