/* ============================================================
   INNER PAGE STYLES — shared across all service child pages
   (hair, nails-feet, face, eyelash-brow, body, waxing, spa)
   ============================================================ */

/* ── Page Hero ─────────────────────────────────────────────── */
.pg-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.pg-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.pg-hero.is-visible .pg-hero__bg {
  transform: scale(1);
}

/* Hero image slider */
.pg-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pg-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: pgSliderFade 10s ease-in-out infinite;
  will-change: opacity;
}

.pg-hero__slide:nth-child(1) { animation-delay: -0.5s; }
.pg-hero__slide:nth-child(2) { animation-delay: 4.5s; }

@keyframes pgSliderFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  50%  { opacity: 1; }
  55%  { opacity: 0; }
  100% { opacity: 0; }
}

.pg-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.pg-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
  justify-content: flex-end;
}

.pg-hero__content {
  max-width: 520px;
}

.pg-hero__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8c56d;
  background: rgba(232, 197, 109, 0.12);
  border: 1px solid rgba(232, 197, 109, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pg-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pg-hero__title em {
  font-style: italic;
  color: #f0cfe8;
}

.pg-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 520px;
}

.pg-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pg-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
}

.pg-hero__btn--primary {
  background: #E50695;
  color: #fff;
  box-shadow: 0 4px 20px rgba(229, 6, 149, 0.38);
}

.pg-hero__btn--primary:hover {
  background: #c4057e;
  box-shadow: 0 6px 28px rgba(229, 6, 149, 0.5);
  transform: translateY(-2px);
}

.pg-hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.pg-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

.pg-hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Strip ────────────────────────────────────────────── */
.pg-stats {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 0;
}

.pg-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid #f0f0f0;
  text-align: center;
  transition: background 0.2s;
}

.pg-stat:last-child { border-right: none; }

.pg-stat:hover { background: #fafafa; }

.pg-stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1C0613;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.pg-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

/* ── Services Section ───────────────────────────────────────── */
.pg-svc-section {
  padding: 80px 0 90px;
  background: #fafafa;
}

.pg-svc-head {
  text-align: center;
  margin-bottom: 40px;
}

.pg-svc-head .section-sub {
  max-width: 520px;
  margin: 0 auto;
}

/* ── Service Tabs ───────────────────────────────────────────── */
.svc-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.svc-tab {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}

.svc-tab:hover {
  border-color: #E50695;
  color: #E50695;
}

.svc-tab.active {
  background: #1C0613;
  border-color: #1C0613;
  color: #fff;
}

/* ── Service Cards Grid ─────────────────────────────────────── */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Service Item Card ──────────────────────────────────────── */
.svc-item-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ebebeb;
  border-top: 3px solid #ddd;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.svc-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
  border-top-color: #E50695;
}

.svc-item-card--featured {
  border-top-color: #c8961e;
}

.svc-item-card--featured:hover {
  border-top-color: #c8961e;
}

.svc-item-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.svc-item-card__cat {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
}

.svc-item-card__badge {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #1C0613;
  color: #e8c56d;
  padding: 3px 8px;
  border-radius: 100px;
}

.svc-item-card__name {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}

.svc-item-card__desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.svc-item-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.svc-item-card__dur {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}

.svc-item-card__dur svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.svc-item-card__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1C0613;
  letter-spacing: -0.01em;
}

.svc-item-card__btn {
  display: block;
  text-align: center;
  padding: 9px 0;
  background: #1C0613;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.18s, transform 0.15s;
  margin-top: 4px;
}

.svc-item-card__btn:hover {
  background: #E50695;
  transform: translateY(-1px);
}

.svc-item-card--featured .svc-item-card__btn {
  background: #c8961e;
}

.svc-item-card--featured .svc-item-card__btn:hover {
  background: #e0aa22;
}

/* ── Brands Section ─────────────────────────────────────────── */
.pg-brands-section {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.pg-brands-head {
  text-align: center;
  margin-bottom: 36px;
}

.pg-brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 36px;
}

.pg-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  transition: transform 0.18s, box-shadow 0.18s;
  flex-shrink: 0;
}

.pg-brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.pg-brand-item img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.18s;
}

.pg-brand-item:hover img {
  filter: grayscale(0);
}

/* ── CTA Section ────────────────────────────────────────────── */
.pg-cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.pg-cta-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 0;
}

.pg-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(229, 6, 149, 0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232, 197, 109, 0.06) 0%, transparent 50%);
}

.pg-cta-inner {
  position: relative;
  z-index: 1;
}

.pg-cta-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4057e;
  margin-bottom: 14px;
}

.pg-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #1C0613;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.pg-cta-sub {
  font-size: 1rem;
  color: #666666;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.pg-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #E50695;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(229, 6, 149, 0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pg-cta-btn:hover {
  background: #c4057e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229, 6, 149, 0.55);
}

/* ── Hidden filter cards ────────────────────────────────────── */
.svc-item-card.is-hidden {
  display: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .svc-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .pg-hero {
    aspect-ratio: unset;
    min-height: 60vh;
    margin-top: 64px;
  }

  .pg-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  .pg-hero__inner {
    justify-content: center;
  }

  .pg-hero__content {
    max-width: 600px;
    text-align: center;
  }

  .pg-hero__actions {
    justify-content: center;
  }

  .pg-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-stat:nth-child(2) { border-right: none; }
  .pg-stat:nth-child(3) { border-right: 1px solid #f0f0f0; border-top: 1px solid #f0f0f0; }
  .pg-stat:nth-child(4) { border-right: none; border-top: 1px solid #f0f0f0; }

  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .pg-hero {
    min-height: 55vh;
  }

  .pg-hero__content {
    max-width: 100%;
    text-align: left;
  }

  .pg-hero__inner {
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .pg-svc-section {
    padding: 60px 0 70px;
  }

  .svc-tabs {
    gap: 6px;
  }

  .svc-tab {
    padding: 8px 15px;
    font-size: 0.78rem;
  }

  .pg-brands-grid {
    gap: 18px 20px;
  }

  .pg-brand-item img {
    height: 28px;
    max-width: 80px;
  }
}

@media (max-width: 640px) {
  .pg-hero {
    min-height: 50vh;
  }

  .pg-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pg-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .pg-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-cards-grid {
    grid-template-columns: 1fr;
  }

  .svc-item-card {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .pg-brands-section {
    padding: 48px 0;
  }

  .pg-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 460px) {
  .pg-hero__title {
    font-size: 2rem;
  }

  .pg-hero__sub {
    font-size: 0.92rem;
  }

  .pg-stat__num {
    font-size: 1.6rem;
  }

  .pg-stat {
    padding: 20px 12px;
  }
}

/* ============================================================
   HAIR PAGE — SERVICES CAROUSEL
   ============================================================ */
.hair-icons-section {
  padding: 80px 0 90px;
  background: #fff;
  overflow: hidden;
}

/* Carousel wrapper */
.rnj-svc-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0 24px;
  margin-top: 40px;
}

/* Fade edges */
.rnj-svc-carousel::before,
.rnj-svc-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.rnj-svc-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.rnj-svc-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}

/* Scrolling track */
.rnj-svc-track {
  display: flex;
  width: max-content;
  animation: rnjSvcScroll 36s linear infinite;
  will-change: transform;
}

.rnj-svc-carousel:hover .rnj-svc-track {
  animation-play-state: paused;
}

.rnj-svc-group {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  padding-right: 16px;
}

@keyframes rnjSvcScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333333%); }
}

/* Image Card */
.rnj-svc-card {
  width: 380px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.rnj-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.rnj-svc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}

.rnj-svc-card:hover .rnj-svc-card__img {
  transform: scale(1.05);
}

.rnj-svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.08) 38%,
    rgba(0,0,0,0.58) 62%,
    rgba(0,0,0,0.88) 100%
  );
}

.rnj-svc-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 28px;
}

.rnj-svc-card__line {
  width: 36px;
  height: 3px;
  background: #c4057e;
  border-radius: 2px;
  margin-bottom: 14px;
}

.rnj-svc-card__name {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.rnj-svc-card__desc {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  line-height: 1.55;
  font-weight: 500;
}

.rnj-svc-card__btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  padding: 9px 10px 9px 20px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.rnj-svc-card__btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.rnj-svc-card__btn-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E50695, #c4057e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.rnj-svc-card__btn:hover .rnj-svc-card__btn-arrow {
  transform: translateX(3px);
}

.rnj-svc-card__btn-arrow svg {
  width: 14px;
  height: 14px;
}

/* Bottom CTA */
.hair-icons-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hair-icons-cta p {
  font-size: 0.92rem;
  color: #888;
  margin: 0;
}

.hair-icons-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 44px;
  background: linear-gradient(135deg, #E50695, #c4057e);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(229,6,149,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hair-icons-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(229,6,149,0.52);
}

/* ============================================================
   HAIR PAGE — BEFORE & AFTER
   ============================================================ */
.hair-ba-section {
  padding: 80px 0 90px;
  background: #fafafa;
}

.hair-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  padding: 0 40px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

/* Side-by-side Before / After card */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.ba-side {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e8ed, #e4d6e1);
}

.ba-side__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ba-pair:hover .ba-side__img {
  transform: scale(1.04);
}

/* Before / After tag */
.ba-tag {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.ba-tag--before {
  background: rgba(0,0,0,0.55);
  color: #fff;
}

.ba-tag--after {
  background: #c4057e;
  color: #fff;
}

.hair-ba-label {
  text-align: center;
  margin-top: 16px;
  font-size: 0.84rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================================
   HAIR PAGE — PORTRAIT VIDEO SCROLL
   ============================================================ */
.hair-video-section {
  padding: 80px 0 90px;
  background: #fff;
  overflow: hidden;
}

/* Marquee strip */
.rnj-vid-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 28px;
  margin-top: 40px;
}

.rnj-vid-marquee::before,
.rnj-vid-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.rnj-vid-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.rnj-vid-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.rnj-vid-track {
  display: flex;
  width: max-content;
  animation: rnjVidScroll 34s linear infinite;
  will-change: transform;
}

.rnj-vid-marquee:hover .rnj-vid-track {
  animation-play-state: paused;
}

.rnj-vid-group {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  padding-right: 16px;
}

@keyframes rnjVidScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333333%); }
}

/* Portrait card */
.rnj-vid-card {
  flex: 0 0 auto;
  width: 240px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnj-vid-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.rnj-vid-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Dark overlay + play button */
.rnj-vid-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s;
}

.rnj-vid-card:hover .rnj-vid-card__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.65) 100%);
}

.rnj-vid-card__play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, background 0.22s;
  flex-shrink: 0;
}

.rnj-vid-card:hover .rnj-vid-card__play {
  transform: scale(1.12);
  background: #fff;
}

.rnj-vid-card__play svg {
  width: 20px;
  height: 20px;
  color: #c4057e;
  margin-left: 3px;
}

/* Placeholder card */
.rnj-vid-card--ph {
  background: linear-gradient(145deg, #f5eaf2 0%, #fce8f6 100%);
  border: 2px dashed rgba(196,5,126,0.2);
  cursor: default;
}

.rnj-vid-card--ph:hover {
  transform: none;
  box-shadow: none;
}

.rnj-vid-card--ph .rnj-vid-card__overlay {
  background: transparent;
  flex-direction: column;
  gap: 12px;
}

.rnj-vid-card--ph .rnj-vid-card__play {
  background: rgba(196,5,126,0.1);
}

.rnj-vid-card--ph .rnj-vid-card__play svg {
  opacity: 0.5;
}

.rnj-vid-ph-label {
  color: rgba(196,5,126,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}

/* ── Video Modal ───────────────────────────────────────────── */
.rnj-vid-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.rnj-vid-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.rnj-vid-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}

.rnj-vid-modal__box {
  position: relative;
  z-index: 1;
  width: min(88vw, 360px);
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.82);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}

.rnj-vid-modal.is-open .rnj-vid-modal__box {
  transform: scale(1);
}

.rnj-vid-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rnj-vid-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.rnj-vid-modal__close:hover {
  background: rgba(0,0,0,0.85);
}

/* ============================================================
   HAIR PAGE — BRANDS MARQUEE
   ============================================================ */
.hair-brands-section {
  padding: 72px 0 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}

.hair-brands-head {
  text-align: center;
  margin-bottom: 44px;
}

.brand-marquee {
  overflow: hidden;
  padding-bottom: 72px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.brand-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.brand-marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 0 0 auto;
  padding-right: 48px;
}

.brand-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.brand-marquee__item:hover {
  transform: translateY(-3px);
}

.brand-marquee__item img {
  width: 125px;
  height: auto;
  object-fit: contain;
}

/* ── Responsive new sections ─────────────────────────────── */
@media (max-width: 1024px) {
  .rnj-svc-card { width: 340px; height: 470px; }
  .rnj-vid-card { width: 210px; }
  .hair-ba-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 28px;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .rnj-svc-carousel::before,
  .rnj-svc-carousel::after { width: 48px; }
  .hair-icons-cta__btn { padding: 14px 32px; font-size: 0.85rem; }
  .hair-ba-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
    max-width: 520px;
  }
  .rnj-vid-card { width: 180px; border-radius: 16px; }
  .rnj-vid-scroll { padding: 16px 20px 24px; gap: 12px; }
}

@media (max-width: 640px) {
  .rnj-svc-carousel::before,
  .rnj-svc-carousel::after { width: 36px; }
  .rnj-svc-group { gap: 12px; padding-right: 12px; }
  .rnj-svc-track { animation-duration: 28s; }
  .rnj-svc-card { width: 280px; height: 420px; border-radius: 20px; }
  .rnj-svc-card__name { font-size: 1.3rem; }
  .rnj-svc-card__desc { font-size: 0.82rem; margin-bottom: 16px; }
  .rnj-svc-card__body { padding: 0 22px 22px; }
}

@media (max-width: 460px) {
  .hair-icons-cta__btn { padding: 13px 24px; font-size: 0.82rem; gap: 7px; }
}
