/* ── Ноготочки VL — нежный женственный дизайн ────────────────────────────── */

:root {
  --pink:       #F9B4C8;
  --pink-dark:  #F07090;
  --pink-light: #FEE8F0;
  --gold:       #C9A84C;
  --gold-light: #F5E6C0;
  --white:      #FFFFFF;
  --bg:         #FFF8FB;
  --bg2:        #FFF0F5;
  --text:       #333333;
  --text-light: #888888;
  --shadow:     0 4px 20px rgba(249,180,200,0.25);
  --shadow-md:  0 8px 30px rgba(249,180,200,0.35);
  --radius:     16px;
  --radius-sm:  10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Кнопки ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-dark), #e060a0);
  color: white;
  box-shadow: 0 4px 15px rgba(240,112,144,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,112,144,0.5); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink-dark);
}
.btn-outline:hover { background: var(--pink-light); }

.btn-sm { padding: 8px 18px; font-size: 14px; }

.btn-telegram {
  background: #2AABEE;
  color: white;
  box-shadow: 0 4px 15px rgba(42,171,238,0.3);
}
.btn-telegram:hover { background: #229ed9; transform: translateY(-2px); }

/* ── Типография ────────────────────────────────────────────────────────────── */

.accent { color: var(--pink-dark); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header.light .section-title { color: white; }
.section-header.light .section-sub { color: rgba(255,255,255,0.85); }

.section-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--text-light);
  font-size: 16px;
}

/* ── Шапка ─────────────────────────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 15px rgba(249,180,200,0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { font-size: 24px; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--text); }
.logo-text .accent { color: var(--pink-dark); }

.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--pink-dark); }

@media (max-width: 640px) {
  .nav { display: none; }
}

/* ── Герой ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF0F5 0%, #FDE8F2 50%, #F5E6C0 100%);
  z-index: -1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,180,200,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero-price {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-price strong {
  font-size: 32px;
  color: var(--pink-dark);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-light);
}
.hero-trust span { white-space: nowrap; }

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  width: 360px;
  height: 420px;
  border-radius: 24px 24px 60px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.hero-img-placeholder {
  font-size: 80px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding: 60px 0 40px; }
}

/* ── Услуги ─────────────────────────────────────────────────────────────────── */

.services { padding: 80px 0; background: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--bg);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card.loading {
  height: 150px;
  position: relative;
  overflow: hidden;
}
.loading-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shine 1.5s infinite;
}
@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.service-emoji { font-size: 32px; margin-bottom: 12px; }
.service-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.service-desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-price { font-size: 22px; font-weight: 800; color: var(--pink-dark); }
.service-duration { font-size: 12px; color: var(--text-light); }

.services-note {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-light);
  padding: 20px;
  background: var(--pink-light);
  border-radius: var(--radius);
}

/* ── Галерея ─────────────────────────────────────────────────────────────────── */

.gallery { padding: 80px 0; background: var(--bg); }

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Почему мы ───────────────────────────────────────────────────────────────── */

.why { padding: 80px 0; background: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--pink-light);
}

.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── Форма записи ─────────────────────────────────────────────────────────────── */

.booking {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-dark) 0%, #d0608a 100%);
}

.booking .section-tag {
  background: rgba(255,255,255,0.2);
  color: white;
}

.booking-wrap {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 4px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}
.step.active .step-num { background: var(--pink-dark); color: white; }
.step.done .step-num { background: #4CAF50; color: white; }
.step-label { font-size: 11px; color: #aaa; white-space: nowrap; }
.step.active .step-label { color: var(--pink-dark); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: #eee; min-width: 30px; }

.booking-step h3 { font-size: 20px; margin-bottom: 20px; }
.booking-step.hidden { display: none; }

.booking-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.booking-svc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.booking-svc-card:hover { border-color: var(--pink); background: var(--pink-light); }
.booking-svc-card.selected { border-color: var(--pink-dark); background: var(--pink-light); }
.booking-svc-left { display: flex; align-items: center; gap: 10px; }
.booking-svc-emoji { font-size: 20px; }
.booking-svc-name { font-weight: 600; font-size: 15px; }
.booking-svc-duration { font-size: 12px; color: var(--text-light); }
.booking-svc-price { font-size: 18px; font-weight: 700; color: var(--pink-dark); }

/* Выбор даты */
.date-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 400px) { .date-picker { grid-template-columns: repeat(3, 1fr); } }

.date-btn {
  padding: 10px 6px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  background: white;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  transition: all 0.2s;
  line-height: 1.3;
}
.date-btn:hover { border-color: var(--pink); background: var(--pink-light); }
.date-btn.selected { border-color: var(--pink-dark); background: var(--pink-light); font-weight: 600; }
.date-btn .date-day { font-weight: 700; font-size: 18px; display: block; color: var(--text); }
.date-btn .date-month { color: var(--text-light); }
.date-btn .date-weekday { color: var(--pink-dark); font-size: 11px; }

/* Выбор времени */
.time-picker { margin-bottom: 24px; }
.time-picker h3 { font-size: 18px; margin-bottom: 14px; }
.time-slots { display: flex; gap: 10px; flex-wrap: wrap; }
.time-btn {
  padding: 12px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  background: white;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}
.time-btn:hover { border-color: var(--pink); background: var(--pink-light); }
.time-btn.selected { border-color: var(--pink-dark); background: var(--pink-dark); color: white; }

/* Форма контактов */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--pink); }

.booking-summary {
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.8;
}

/* Consent checkbox */
.consent-group { margin: 12px 0 20px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--pink);
  cursor: pointer;
}
.consent-label a { color: var(--pink); }

.step-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

/* Успех */
.success-icon { font-size: 56px; text-align: center; margin-bottom: 12px; }
.booking-step:has(.success-icon) h3 { text-align: center; }
.success-details {
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 16px 0;
  font-size: 15px;
  line-height: 2;
}
.success-note { font-size: 13px; color: var(--text-light); margin-bottom: 20px; text-align: center; }

/* Или Telegram */
.booking-alt {
  text-align: center;
  margin-top: 32px;
}
.booking-alt p { color: rgba(255,255,255,0.85); margin-bottom: 12px; font-size: 15px; }

/* ── Отзывы ─────────────────────────────────────────────────────────────────── */

.reviews { padding: 80px 0; background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-stars { font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; color: var(--text-light); font-weight: 600; }

/* ── Контакты ───────────────────────────────────────────────────────────────── */

.contacts { padding: 80px 0; background: white; }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-icon { font-size: 24px; min-width: 32px; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-item p { color: var(--text-light); font-size: 15px; }
.contact-item a { color: var(--pink-dark); text-decoration: none; }
.contact-item small { color: var(--text-light); font-size: 12px; }

.map-placeholder {
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-pin { font-size: 40px; }
.map-placeholder p { font-size: 15px; color: var(--text); font-weight: 500; }

/* ── Подвал ─────────────────────────────────────────────────────────────────── */

.footer {
  background: var(--text);
  color: white;
  padding: 40px 0 24px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand .logo-text { color: white; font-size: 18px; }

.footer p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }

.footer-copy {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Утилиты ───────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .services, .gallery, .why, .booking, .reviews, .contacts { padding: 56px 0; }
  .booking-wrap { padding: 28px 20px; }
  .date-picker { grid-template-columns: repeat(3, 1fr); }
}
