/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink-bg: #fdeef3;
  --pink-accent: #f7a8c4;
  --pink-accent-dark: #e88fae;
  --pink-deep: #d67ea0;
  --white: #ffffff;
  --text-main: #4a3742;
  --text-soft: #8a7480;
  --line: #f2d9e3;
  --shadow-soft: 0 10px 30px rgba(216, 130, 168, 0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
}

a {
  color: inherit;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Fallback pentru browsere fără suport backdrop-filter (ex. versiuni
   vechi de Firefox/Edge): fundal aproape opac, ca să nu se piardă textul. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.97);
  }
}

/* Shrink on scroll — clasa .scrolled e adăugată din script.js */
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
  padding: 6px 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 2px 10px rgba(216, 130, 168, 0.35);
  transition: height 0.3s ease, width 0.3s ease;
}

.site-header.scrolled .logo-img {
  height: 42px;
  width: 42px;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-main);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 0.25s ease;
}

.nav-list a:hover {
  color: var(--pink-deep);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  margin: 0 auto;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--pink-bg); /* fallback color, apropiat de fundalul logo-ului */
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Scrim între video și text — video-ul rămâne neatins, doar adăugăm un
   strat semi-transparent deasupra lui pentru contrast. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(30, 12, 20, 0.4) 0%, rgba(30, 12, 20, 0.22) 45%, rgba(30, 12, 20, 0) 78%),
    linear-gradient(180deg, rgba(30, 12, 20, 0.28) 0%, rgba(30, 12, 20, 0.1) 28%, rgba(30, 12, 20, 0.12) 60%, rgba(30, 12, 20, 0.4) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-content {
  max-width: 640px;
  color: var(--white);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pink-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-style: italic;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 6px 22px rgba(0, 0, 0, 0.45);
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: 34px;
}

/* Buton hero — contrast garantat peste video deschis la culoare */
.hero .cta-button {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(216, 130, 168, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.hero .cta-button:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 12px 28px rgba(216, 130, 168, 0.55);
}

/* ==================== BUTTONS ==================== */
.cta-button {
  display: inline-block;
  background: var(--pink-accent);
  color: white;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(216, 130, 168, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: var(--pink-accent-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 26px rgba(216, 130, 168, 0.5);
}

/* ==================== LAYOUT / SECTIONS ==================== */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-soft);
  font-weight: 300;
  font-size: 0.98rem;
}

/* ==================== PLACEHOLDER IMAGES ==================== */
.placeholder-img {
  background: linear-gradient(135deg, var(--pink-bg) 0%, #f9dbe6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--pink-deep);
}

.placeholder-icon {
  width: 44px;
  height: 44px;
  opacity: 0.75;
}

.placeholder-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--pink-deep);
  opacity: 0.8;
}

.service-image img,
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-slide img {
  cursor: zoom-in;
}

/* ==================== SERVICES ==================== */
.service-category {
  margin-bottom: 64px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-title {
  position: relative;
  font-style: italic;
  font-size: 1.65rem;
  color: var(--pink-deep);
  text-align: center;
  margin-bottom: 32px;
}

/* Linie decorativă subtilă sub numele categoriei mari (Gene, Sprâncene) —
   marchează vizual, dintr-o privire, unde începe o categorie nouă. */
.category-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--pink-accent);
  border-radius: 3px;
}

.service-subcategory {
  margin-bottom: 80px;
}

.service-subcategory:last-child {
  margin-bottom: 0;
}

.subcategory-title {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 28px;
}

/* Aceeași idee ca la .category-title, dar mai discretă — subcategoriile
   (Clasice, Volum, Stiluri speciale, Întreținere) sunt un nivel mai jos în
   ierarhie, deci accentul e mai mic. */
.subcategory-title::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--pink-accent);
  border-radius: 2px;
  opacity: 0.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-grid--compact .service-image {
  height: 150px;
}

.services-grid--compact .service-body {
  padding: 20px 20px 24px;
}

.services-grid--compact .service-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.services-grid--narrow {
  grid-template-columns: repeat(2, 1fr);
  max-width: 480px;
  margin: 0 auto;
}

/* Subcategoriile cu exact 3 servicii (Clasice / Volum / Stiluri speciale) */
.services-grid--triple {
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(216, 130, 168, 0.25);
}

.service-image {
  height: 220px;
  width: 100%;
}

/* Cadraj pe zona cheie (ochi/geană/sprânceană) — verificat individual per poză,
   fiindcă fiecare fotografie are elementul de interes altfel poziționat.
   Match exact pe src (nu sufix), ca "volume.jpeg" să nu prindă și
   "soft-volume.jpeg"/"mega-volume.jpeg". */
.service-image img[src="public/images/services/gene-1d.jpeg"]              { object-position: center 48%; }
.service-image img[src="public/images/services/gene-2d.jpeg"]              { object-position: 30% center; }
.service-image img[src="public/images/services/gene-3d.jpeg"]              { object-position: center 62%; }
.service-image img[src="public/images/services/soft-volume.jpeg"]         { object-position: center 60%; }
.service-image img[src="public/images/services/volume.jpeg"]              { object-position: center 56%; }
.service-image img[src="public/images/services/mega-volume.jpeg"]         { object-position: center 56%; }
.service-image img[src="public/images/services/wispy.jpeg"]               { object-position: center 60%; }
.service-image img[src="public/images/services/foxy.jpeg"]                { object-position: center 62%; }
.service-image img[src="public/images/services/anime.jpeg"]               { object-position: center 64%; }
.service-image img[src="public/images/services/pensat.jpeg"]              { object-position: center 52%; }
.service-image img[src="public/images/services/laminare-gene-1.jpeg"]     { object-position: center 58%; }
.service-image img[src="public/images/services/laminare-sprancene-1.jpeg"] { object-position: center 42%; }
.service-image img[src="public/images/services/refill.jpeg"]              { object-position: center 62%; }

.service-image-link {
  display: block;
}

.service-image-link .placeholder-icon {
  transition: transform 0.3s ease;
}

.service-image-link:hover .placeholder-icon {
  transform: scale(1.08);
}

.service-title-link {
  text-decoration: none;
}

.service-title-link h4 {
  transition: color 0.2s ease;
}

.service-title-link:hover h4 {
  color: var(--pink-deep);
}

.service-body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex: 1;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.meta-badge {
  background: var(--pink-bg);
  color: var(--pink-deep);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--pink-accent);
}

.meta-badge.discount {
  border-color: var(--pink-deep);
}

.meta-badge em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  font-size: 0.72rem;
}

.card-cta {
  text-align: center;
  text-decoration: none;
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--pink-accent);
  border-radius: 999px;
  padding: 11px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.card-cta:hover {
  background: var(--pink-accent);
  color: var(--white);
}

/* ==================== WHY SECTION ==================== */
.why-section {
  background: var(--pink-bg);
  border-radius: 40px;
  max-width: 1200px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(216, 130, 168, 0.1);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink-deep);
  margin-bottom: 18px;
}

.why-icon svg {
  width: 30px;
  height: 30px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 300;
}

/* ==================== GALLERY ==================== */
.gallery-slider {
  max-width: 440px;
  margin: 0 auto;
}

/* ==================== BOOKING FORM ==================== */
.booking-section {
  max-width: 720px;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Regula de mai sus (display: flex, fără !important) are aceeași specificitate
   ca [hidden] { display: none } din stilul implicit al browserului, dar CSS-ul
   autorului câștigă mereu în fața celui implicit — deci `hidden` era ignorat pe
   orice element .form-row (bug: vopsire + multicolor apăreau simultan). Regula
   de mai jos are specificitate mai mare și repară asta. */
.form-row[hidden] {
  display: none;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-row input,
.form-row select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--pink-bg);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--pink-accent);
  background: var(--white);
}

.form-row select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Suport parțial cross-browser pentru <option> (line-through nu merge peste
   tot) — textul "(ocupat)" adăugat în JS rămâne indicatorul sigur, universal. */
.ora-ocupata {
  color: var(--text-soft);
  text-decoration: line-through;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
}

.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.88rem;
  color: var(--pink-deep);
  min-height: 1.2em;
}

.form-optional {
  font-weight: 400;
  color: var(--text-soft);
}

.required-mark {
  color: var(--pink-accent-dark);
  font-weight: 600;
}

.form-row--vopsire {
  grid-column: 1 / -1;
}

/* Removal e o opțiune universală (valabilă pentru orice serviciu, nu doar un
   grup) — separată vizual de opțiunile per-serviciu printr-o linie subțire. */
.form-row--removal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 126, 160, 0.18);
}

/* ---------- Calendar custom (doar Vineri–Duminică) ---------- */
.form-row--date {
  position: relative;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--pink-deep);
  margin: 2px 0 0;
}

.datepicker {
  position: relative;
}

.datepicker-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--pink-bg);
  color: var(--text-main);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.datepicker-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--pink-deep);
  flex-shrink: 0;
}

.datepicker-toggle:focus,
.datepicker-toggle.open {
  border-color: var(--pink-accent);
  background: var(--white);
  outline: none;
}

.datepicker-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.datepicker-month {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  text-transform: capitalize;
}

.datepicker-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--pink-bg);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.datepicker-nav svg {
  width: 16px;
  height: 16px;
}

.datepicker-nav:hover:not(:disabled) {
  background: var(--pink-accent);
  color: var(--white);
}

.datepicker-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.datepicker-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.datepicker-day:hover:not(:disabled) {
  background: var(--pink-bg);
}

.datepicker-day.selected {
  background: var(--pink-accent);
  color: var(--white);
  font-weight: 600;
}

.datepicker-day:disabled {
  color: var(--line);
  cursor: not-allowed;
  background: transparent;
}

.datepicker-day--empty {
  visibility: hidden;
}

.datepicker-legend {
  font-size: 0.72rem;
  color: var(--text-soft);
  text-align: center;
  margin: 10px 0 0;
}

.form-note--success {
  color: #3a8a5c;
}

.form-note--error {
  color: #c0392b;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==================== FOOTER / CONTACT ==================== */
.site-footer {
  background: linear-gradient(180deg, var(--pink-bg) 0%, #f9dbe6 100%);
  padding: 70px 24px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 2px 10px rgba(216, 130, 168, 0.35);
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 0.9rem;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  color: var(--pink-deep);
  flex-shrink: 0;
}

.footer-social:hover {
  color: var(--pink-deep);
}

.footer-text-link {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-text-link:hover {
  color: var(--pink-deep);
}

.footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-credit {
  text-align: center;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text-soft);
  opacity: 0.75;
}

.footer-credit a {
  color: var(--text-soft);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--pink-deep);
}

/* ==================== PAGINI INTERIOARE (produs / regulament) ==================== */
.page-hero {
  padding: 150px 24px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--pink-deep);
  font-size: 0.88rem;
  font-weight: 500;
}

.breadcrumb-link svg {
  width: 16px;
  height: 16px;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

/* ---------- Pagină de produs ---------- */
.product-section {
  padding: 30px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.product-info .eyebrow {
  display: block;
}

.product-info h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-style: italic;
  margin: 10px 0 20px;
}

.product-desc {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 28px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.product-meta .meta-badge {
  font-size: 0.92rem;
  padding: 9px 18px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- Opțiune "Adaugă vopsire" (Laminare gene / sprâncene) ---------- */
.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
}

.addon-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink-accent);
  cursor: pointer;
}

/* Pentru text lung (ex. explicația de la Removal), aliniem checkbox-ul sus,
   nu pe centrul blocului de text. */
.addon-checkbox--wide {
  align-items: flex-start;
}

.addon-checkbox--wide input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- Poză unică produs (fără carusel) ---------- */
.product-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  background: var(--pink-bg);
  aspect-ratio: 4 / 5;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

/* ---------- Slider ---------- */
.slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  background: var(--pink-bg);
}

.slider-track {
  display: flex;
  aspect-ratio: 4 / 5;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  touch-action: pan-y;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.slider-slide .placeholder-img {
  height: 100%;
}

.slider-slide .placeholder-icon {
  width: 56px;
  height: 56px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.slider-btn--prev {
  left: 14px;
}

.slider-btn--next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 0 2px var(--pink-accent);
}

/* ---------- Lightbox (zoom poză produs) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 14, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

body.lightbox-locked {
  overflow: hidden;
}

/* ---------- Regulament ---------- */
.rules-section {
  padding: 20px 24px 100px;
  max-width: 820px;
  margin: 0 auto;
}

.rules-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}

.rules-block:last-child {
  margin-bottom: 0;
}

.rules-title {
  font-style: italic;
  font-size: 1.6rem;
  color: var(--pink-deep);
  margin-bottom: 12px;
}

.rules-intro {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rules-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rules-list .rule-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink-deep);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rules-list p {
  font-size: 0.95rem;
  color: var(--text-main);
  padding-top: 4px;
}

.rules-subtitle {
  font-size: 1.1rem;
  color: var(--text-main);
  margin: 32px 0 16px;
}

.rules-subtitle:first-of-type {
  margin-top: 0;
}

.rules-note {
  color: var(--text-soft);
  font-size: 0.95rem;
  background: var(--pink-bg);
  border-radius: 16px;
  padding: 20px 22px;
}

/* ---------- Pagină de contact ---------- */
.contact-section {
  padding: 20px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 26px;
  text-decoration: none;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(216, 130, 168, 0.25);
  border-color: var(--pink-accent);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink-deep);
  margin-bottom: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--pink-accent);
  color: var(--white);
}

.contact-card-icon svg {
  width: 36px;
  height: 36px;
}

.contact-card h3 {
  font-size: 1.15rem;
}

.contact-card-handle {
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-card-desc {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.schedule-section {
  padding-top: 0;
}

.schedule-box {
  max-width: 480px;
  margin: 0 auto;
  background: var(--pink-bg);
  border-radius: 20px;
  padding: 10px 28px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(214, 126, 160, 0.18);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-day {
  font-weight: 600;
  color: var(--text-main);
}

.schedule-hours {
  color: var(--pink-deep);
  font-weight: 600;
}

.schedule-row--closed .schedule-hours {
  color: var(--text-soft);
  font-weight: 400;
}

/* ==================== REVEAL ON SCROLL ==================== */
.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.visible,
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cascadă pe carduri: fiecare pornește puțin mai târziu decât precedentul */
.services-grid .reveal-item:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.services-grid .reveal-item:nth-child(3) { transition-delay: 0.24s; }

/* Grila compactă de servicii are 4 coloane — cascadă repetată pe fiecare rând */
.services-grid--compact .reveal-item:nth-child(4n+1) { transition-delay: 0s; }
.services-grid--compact .reveal-item:nth-child(4n+2) { transition-delay: 0.1s; }
.services-grid--compact .reveal-item:nth-child(4n+3) { transition-delay: 0.2s; }
.services-grid--compact .reveal-item:nth-child(4n+4) { transition-delay: 0.3s; }

.services-grid--narrow .reveal-item:nth-child(1) { transition-delay: 0s; }
.services-grid--narrow .reveal-item:nth-child(2) { transition-delay: 0.12s; }

.why-grid .reveal-item:nth-child(1) { transition-delay: 0s; }
.why-grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal-item:nth-child(4) { transition-delay: 0.3s; }

.contact-cards .reveal-item:nth-child(1) { transition-delay: 0s; }
.contact-cards .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.contact-cards .reveal-item:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .services-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid:not(.services-grid--compact):not(.services-grid--narrow) {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .slider-track {
    aspect-ratio: 4 / 3;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 100px 32px 32px;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 70px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .site-footer {
    padding: 40px 20px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .footer-brand p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 0.85rem;
  }

  .footer-brand,
  .footer-links {
    align-items: center;
    gap: 8px;
  }

  .footer-links h4 {
    margin-bottom: 2px;
  }

  .footer-cta {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 2px;
  }

  .footer-cta .cta-button {
    padding: 12px 30px;
    font-size: 0.88rem;
  }

  .footer-bottom {
    margin-top: 24px;
  }

  /* Videoul de fundal (hero-loop*.mp4) e un cadru PĂTRAT (1080x1080 / 720x720)
     cu textul "NADIA'S LASHES" întins pe aproape toată lățimea. Cu hero la
     100vh (portret), object-fit:cover arată doar ~46% din lățimea sursei —
     restul se taie simetric stânga-dreapta, exact ce reclama fișa. Nici
     object-position, nici transform:scale() nu pot rezolva asta (matematica
     lui `cover` pe o sursă pătrată depinde strict de raportul W:H al
     containerului). Soluția reală: apropiem containerul de un pătrat,
     legându-i înălțimea de lățimea ecranului (clamp), ca să se vadă mult mai
     mult din compoziție, fără bare goale (fără object-fit:contain).
     120vw ≈ 83% din lățime vizibilă (față de 46% cât era). */
  .hero {
    height: clamp(400px, 120vw, 100vh);
    min-height: 400px;
  }

  /* Pe mobil hero-ul e mult mai scund (vezi mai sus), deci conținutul
     centrat vertical ajunge să pornească sub header-ul fix (.site-header,
     ~70px, semi-transparent) — primul rând (hero-eyebrow) rămâne acoperit
     de el și pare că nu se afișează deloc. Compensăm cu padding-top cât
     header-ul, ca centrarea să se facă în spațiul rămas, sub el. */
  .hero-overlay {
    padding-top: 70px;
  }

  .page-hero {
    padding: 130px 20px 10px;
  }

  .product-section,
  .rules-section {
    padding: 20px 20px 70px;
  }

  .rules-block {
    padding: 28px 22px;
  }

  /* Header-ul de secțiune (eyebrow + h2 + paragraf) avea prea mult spațiu
     vertical pe mobil — h2 moștenea line-height:1.6 de la body (potrivit
     pentru paragrafe, nu pentru un titlu), iar marginile erau gândite pentru
     desktop. Strângem totul, ca utilizatorul să ajungă mai repede la produse. */
  .section-heading {
    margin-bottom: 32px;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  .section-heading h2 {
    line-height: 1.25;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid--compact {
    grid-template-columns: 1fr;
  }

  .logo-img {
    height: 46px;
    width: 46px;
  }
}
