/* ========================================
   POLKKA NAILS — Main Styles
   Palette: purple #C4A0D8 / pink #F0B0CC / magenta #E870A8 / cream #FFF5EE / cyan #78D4E8
======================================== */

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

:root {
  --purple:      #B58AC8;
  --purple-dark: #8A6AA8;
  --pink:        #F0B0CC;
  --pink-dark:   #E870A8;
  --magenta:     #D060A0;
  --cream:       #FFF5EE;
  --cream-dark:  #F7EBE0;
  --cyan:        #78D4E8;
  --text:        #3D2040;
  --text-light:  #7A5570;
  --white:       #FFFFFF;

  --grad-main: linear-gradient(135deg, #9B7EC8 0%, #C4A0D8 25%, #F0B0CC 60%, #E870A8 100%);
  --grad-soft: linear-gradient(135deg, #C4A0D8 0%, #F0B0CC 50%, #FFD0E0 100%);
  --grad-btn:  linear-gradient(135deg, #B088C8 0%, #E870A8 100%);

  --shadow:    0 8px 32px rgba(180, 100, 160, 0.18);
  --shadow-lg: 0 20px 60px rgba(180, 100, 160, 0.25);
  --radius:    16px;
  --radius-sm: 10px;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ---------- SPINNER ---------- */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(180,100,160,0.2);
  border-top-color: var(--pink-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==================== BUBBLE ANIMATIONS ==================== */
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);     opacity: 0.7; }
  50%  { transform: translateY(-18px) scale(1.04); opacity: 1; }
  100% { transform: translateY(0) scale(1);     opacity: 0.7; }
}
@keyframes floatSide {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(6px, -10px) scale(1.03); }
  66%  { transform: translate(-4px, -18px) scale(0.97); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes bubblePop {
  0%   { transform: scale(0.85); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,112,168,0.35); }
  50%       { box-shadow: 0 0 0 12px rgba(232,112,168,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
/* Floating orbs in sections */
.section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: floatSide 8s ease-in-out infinite;
}
/* Entry animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(180,100,160,0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav__logo-pk    { color: var(--purple-dark); }
.nav__logo-dot   { color: var(--pink-dark); margin: 0 2px; }
.nav__logo-nails { color: var(--magenta); }

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav__link:hover { color: var(--pink-dark); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.18);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.96) !important; }

.btn--primary {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 112, 168, 0.45);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(232, 112, 168, 0.6);
}
.btn--ghost {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
/* On light backgrounds — ghost becomes outline-pink */
.booking__success .btn--ghost,
.section .btn--ghost {
  background: rgba(216, 96, 160, 0.08);
  color: var(--magenta);
  border: 1.5px solid rgba(216, 96, 160, 0.5);
}
.booking__success .btn--ghost:hover,
.section .btn--ghost:hover {
  background: rgba(216, 96, 160, 0.15);
  border-color: var(--magenta);
  color: var(--magenta);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(216, 96, 160, 0.25);
}
.btn--ghost-dark {
  background: rgba(180,100,160,0.07);
  color: var(--text);
  border: 1.5px solid rgba(180,100,160,0.4);
}
.btn--ghost-dark:hover {
  background: rgba(180,100,160,0.13);
  border-color: var(--pink-dark);
  color: var(--pink-dark);
  transform: translateY(-2px) scale(1.02);
}
.btn--full { width: 100%; }

/* ==================== SECTION ==================== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 48px;
}
.section__title em {
  font-style: italic;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--grad-main);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(255,245,238,0.55) 0%, transparent 70%);
}

/* Sparkles */
.hero__sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.spark {
  position: absolute;
  color: rgba(255,255,255,0.7);
  animation: sparkle 4s ease-in-out infinite;
}
.spark--1 { top: 12%; left: 8%;   font-size: 1.1rem; animation-delay: 0s;    }
.spark--2 { top: 18%; right: 12%; font-size: 0.8rem; animation-delay: 0.6s;  }
.spark--3 { top: 55%; left: 5%;   font-size: 1.4rem; animation-delay: 1.2s;  }
.spark--4 { top: 70%; right: 8%;  font-size: 0.9rem; animation-delay: 0.3s;  }
.spark--5 { top: 85%; left: 18%;  font-size: 0.7rem; animation-delay: 1.8s;  }
.spark--6 { top: 30%; left: 22%;  font-size: 0.6rem; animation-delay: 2.4s;  }
.spark--7 { top: 40%; right: 20%; font-size: 1.2rem; animation-delay: 0.9s;  }
.spark--8 { top: 90%; right: 25%; font-size: 0.65rem;animation-delay: 1.5s;  }

@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1)   rotate(0deg);   }
  50%       { opacity: 1;   transform: scale(1.4) rotate(20deg);  }
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}
.hero__subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.hero__title em { font-style: italic; font-weight: 300; }
.hero__dot { color: rgba(255,255,255,0.6); margin: 0 4px; }
.hero__city {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==================== ABOUT ==================== */
.about { background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img-placeholder {
  aspect-ratio: 4/5;
  background: var(--grad-soft);
  border-radius: 40px 8px 40px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 3rem;
  color: var(--white);
}
.about__img-placeholder p {
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: var(--font-heading);
  font-style: italic;
}
.about__badge {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 72px; height: 72px;
  background: var(--grad-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  box-shadow: var(--shadow);
}
.about__text { }
.about__desc {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.about__features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about__feature-icon { color: var(--magenta); font-size: 0.7rem; }

/* ==================== GALLERY ==================== */
.gallery-section { background: var(--cream-dark); }
.gallery__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(180,100,160,0.25);
  background: transparent;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn--active {
  background: var(--grad-btn);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(232,112,168,0.3);
}
.gallery__loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.gallery__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(180,100,160,0.3);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(60,20,50,0.7));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
}
.gallery__empty {
  text-align: center;
  padding: 60px;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(20,5,25,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.lightbox.hidden { display: none !important; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox__img-wrap img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox__caption {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-style: italic;
  margin-top: 12px;
  font-size: 1rem;
}
.lightbox__close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.lightbox__close:hover { color: var(--white); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ==================== PRICES ==================== */
.prices { background: var(--cream); }
.prices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.prices__loading { text-align: center; padding: 40px; }
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(180,100,160,0.1);
  border: 1.5px solid rgba(180,100,160,0.08);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(180,100,160,0.22);
  border-color: rgba(180,100,160,0.2);
}
.price-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.price-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
}
.price-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(180,100,160,0.12);
}
.price-card__price {
  font-size: 1.4rem;
  font-weight: 600;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card__duration {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.prices__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ==================== BOOKING ==================== */
/* Fix: section title contrast on pink gradient background */
.booking-section .section__label { color: #9040B8; }
.booking-section .section__title { color: var(--text); }
.booking-section .section__title em {
  background: linear-gradient(135deg, #6030A8 0%, #C02898 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-section {
  background: var(--grad-soft);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,245,238,0.55), transparent);
}
.booking__wrap { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.booking__form-card {
  background: rgba(255,250,248,0.88);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.req { color: var(--magenta); }
.form-input {
  padding: 13px 16px;
  border: 1.5px solid rgba(180,100,160,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.8);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(181,138,200,0.15);
}
.form-input.error { border-color: #e05060; }
.form-select { cursor: pointer; }
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form__error {
  background: rgba(220,60,80,0.08);
  border: 1px solid rgba(220,60,80,0.2);
  color: #c03048;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Booking success */
.booking__success {
  background: rgba(255,250,248,0.88);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}
.booking__success-icon { font-size: 4rem; margin-bottom: 20px; }
.booking__success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text);
}
.booking__success p { color: var(--text-light); margin-bottom: 28px; }
.booking__status-wrap {
  background: rgba(180,100,160,0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 24px 0;
}
.booking__status-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px !important;
}
.booking__status-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.booking__status-badge.pending   { background: rgba(255,190,60,0.15); color: #b07820; border: 1px solid rgba(255,190,60,0.3); }
.booking__status-badge.confirmed { background: rgba(60,180,100,0.12); color: #2a8050; border: 1px solid rgba(60,180,100,0.25); }
.booking__status-badge.rejected  { background: rgba(220,60,80,0.1);   color: #c03048; border: 1px solid rgba(220,60,80,0.2); }
.booking__status-id { font-size: 0.82rem; color: var(--text-light); }

/* ==================== STATUS CHECK ==================== */
.status-section { background: var(--cream-dark); padding: 64px 0; }
.status-check { max-width: 560px; margin: 0 auto; text-align: center; }
.status-check h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--text);
}
.status-check h3 em {
  font-style: italic;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.status-check__form {
  display: flex;
  gap: 12px;
}
.status-check__result {
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 4px 20px rgba(180,100,160,0.1);
  text-align: left;
}
.status-check__result .status-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(180,100,160,0.08);
  font-size: 0.9rem;
}
.status-check__result .status-row:last-child { border: none; }
.status-check__result .status-row span:first-child { color: var(--text-light); }
.status-check__result .status-row span:last-child { font-weight: 500; }

/* ==================== CONTACTS ==================== */
.contacts { background: var(--cream); }
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(180,100,160,0.1);
  border: 1.5px solid rgba(180,100,160,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card--tg  .contact-card__icon { background: #e8f6ff; color: #0088cc; }
.contact-card--ig  .contact-card__icon { background: linear-gradient(135deg, #ffecd2, #fcb69f); color: #c13584; }
.contact-card--location .contact-card__icon { background: rgba(180,100,160,0.1); color: var(--magenta); }
.contact-card__info { flex: 1; }
.contact-card__label { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-card__value { font-weight: 500; font-size: 0.95rem; }
.contact-card__arrow { color: var(--text-light); font-size: 1.2rem; }
.contacts__cta {
  text-align: center;
  background: var(--grad-soft);
  border-radius: 24px;
  padding: 48px;
}
.contacts__cta p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 24px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer__brand .nav__logo-pk    { color: #C4A0D8; }
.footer__brand .nav__logo-dot   { color: var(--pink-dark); }
.footer__brand .nav__logo-nails { color: var(--pink); }
.footer__brand p { font-size: 0.82rem; margin-top: 6px; opacity: 0.6; }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer__links a:hover { opacity: 1; }
.footer__copy {
  font-size: 0.78rem;
  opacity: 0.4;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ==================== NAV OVERLAY (mobile) ==================== */
.nav__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(50, 10, 40, 0.45);
  z-index: 49;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease;
}
.nav__overlay.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==================== HERO SOCIALS ==================== */
.hero__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.social-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-icon--tg { background: rgba(0, 136, 204, 0.25); }
.social-icon--tg:hover { background: rgba(0, 136, 204, 0.5); border-color: rgba(255,255,255,0.8); }
.social-icon--pinterest { background: rgba(189, 8, 28, 0.25); }
.social-icon--pinterest:hover { background: rgba(189, 8, 28, 0.5); border-color: rgba(255,255,255,0.8); }

/* ==================== BOOKING STEPS ==================== */
.booking__step { /* just a wrapper */ }

/* TG login card */
.booking__tg-card {
  background: rgba(255,250,248,0.88);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  text-align: center;
}
.booking__tg-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #0088cc, #00b0e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}
.booking__tg-icon svg { width: 36px; height: 36px; color: var(--white); }
.booking__tg-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 12px;
}
.booking__tg-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.tg-login-widget {
  display: flex;
  justify-content: center;
  min-height: 52px;
  margin-bottom: 12px;
}
.booking__tg-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0 !important;
}

/* User bar */
.booking__user-bar { margin-bottom: 20px; }
.user-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,250,248,0.9);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 16px rgba(180,100,160,0.1);
}
.user-bar__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.user-bar__avatar--placeholder {
  background: var(--grad-btn);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.user-bar__info { flex: 1; min-width: 0; }
.user-bar__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-bar__handle {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
}
.user-bar__change {
  background: none;
  border: none;
  font-size: 0.78rem;
  color: var(--magenta);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.user-bar__change:hover { background: rgba(208, 96, 160, 0.1); }

/* Bot notification hint */
.booking__bot-hint {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(0,136,204,0.06);
  border: 1px solid rgba(0,136,204,0.15);
  border-radius: 12px;
  text-align: center;
}
.booking__bot-hint p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ==================== TG CHANNEL SECTION ==================== */
.tg-channel-section {
  background: var(--cream-dark);
  padding: 80px 0;
}
.tg-channel-wrap {
  max-width: 540px;
  margin: 0 auto;
  min-height: 120px;
}
.tg-channel-placeholder {
  display: flex;
  justify-content: center;
  padding: 40px;
}
.tg-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0088cc, #00b0e8);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,136,204,0.3);
  transition: all 0.25s;
}
.tg-channel-link svg { width: 20px; height: 20px; }
.tg-channel-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,136,204,0.4);
}

/* ==================== CONTACT CARDS (new types) ==================== */
.contact-card--tg-channel .contact-card__icon {
  background: linear-gradient(135deg, #e8f6ff, #c5e8fa);
  color: #0088cc;
}
.contact-card--pinterest .contact-card__icon {
  background: linear-gradient(135deg, #ffe8ea, #ffc5ca);
  color: #bd081c;
}

/* Contacts grid — 3 cols default, scales down */
.contacts__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ==================== RESPONSIVE ==================== */

/* Anchor links land below the fixed nav */
html { scroll-padding-top: 72px; }

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

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap { max-width: 340px; margin: 0 auto; }
  .about__img-placeholder { border-radius: 28px 8px 28px 8px; }
  .contacts__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── CRITICAL: Prevent iOS Safari auto-zoom on input focus ──
     iOS zooms when any input has font-size < 16px            */
  .form-input,
  .form-select,
  select, input[type="text"],
  input[type="tel"], input[type="email"],
  input[type="date"], input[type="number"],
  textarea { font-size: 16px !important; }

  /* Hero: use svh so address-bar doesn't cut off content */
  .hero { min-height: 100svh; }
  /* Push content below fixed nav */
  .hero__content { padding-top: 92px; padding-bottom: 48px; }

  /* Hide heavy animated orbs on mobile — saves GPU */
  .section__orb { display: none; }

  /* ── HERO SOCIALS */
  .social-icon span { display: none; }
  .social-icon { padding: 9px 13px; }

  /* TG CARD */
  .booking__tg-card { padding: 32px 24px; border-radius: 18px; }
  .booking__tg-card h3 { font-size: 1.5rem; }
  .tg-channel-section { padding: 56px 0; }

  /* NAV */
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(280px, 85vw);
    background: rgba(255, 246, 242, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 48px 32px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(180,100,160,0.2);
    z-index: 50;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1.15rem; color: var(--text); }

  /* SECTIONS */
  .section { padding: 64px 0; }
  .section__title { font-size: clamp(1.6rem, 7vw, 2.6rem); margin-bottom: 28px; }
  .section__label { font-size: 0.72rem; }

  /* ABOUT */
  .about__features { grid-template-columns: 1fr; gap: 10px; }
  .about__desc { font-size: 0.95rem; }

  /* GALLERY */
  .gallery__filters { gap: 8px; }
  .filter-btn { padding: 6px 16px; font-size: 0.8rem; }

  /* PRICES */
  .prices__grid { grid-template-columns: 1fr; }

  /* BOOKING */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking__form-card { padding: 24px 20px; border-radius: 18px; }
  .booking__success { padding: 36px 20px; border-radius: 18px; }
  .form-input { padding: 12px 14px; font-size: 0.92rem; min-height: 44px; }

  /* STATUS CHECK */
  .status-check__form { flex-direction: column; }
  .status-check { padding: 0 8px; }

  /* CONTACTS */
  .contacts__grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { padding: 20px; }
  .contacts__cta { padding: 28px 20px; border-radius: 18px; }
  .contacts__cta p { font-size: 1.1rem; }

  /* LIGHTBOX */
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.8rem; }
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }

  /* FOOTER */
  .footer { padding: 40px 0 24px; }
  .footer__inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer__links { gap: 14px; flex-wrap: wrap; }

  /* User bar full width on mobile */
  .booking__user-bar { width: 100%; }

  /* Bot hint CTA full width */
  .booking__bot-hint .btn { width: 100%; }

  /* Tg-channel widget padding */
  .tg-channel-section { padding: 48px 0; }
  .tg-channel-wrap { padding: 0 8px; }
}

@media (max-width: 480px) {
  /* HERO */
  .hero__socials { gap: 8px; }
  .social-icon { padding: 8px 12px; }
  .hero__title { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .hero__subtitle { font-size: 0.72rem; letter-spacing: 0.16em; }
  .hero__desc { font-size: 0.9rem; line-height: 1.65; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  /* Scroll hint above home indicator */
  .hero__scroll-hint { bottom: max(16px, env(safe-area-inset-bottom, 16px)); }

  /* ABOUT */
  .about__img-wrap { max-width: 100%; }
  .about__img-placeholder { border-radius: 20px 6px 20px 6px; font-size: 2.5rem; }
  .about__badge { width: 56px; height: 56px; font-size: 0.85rem; bottom: -12px; right: -8px; }

  /* GALLERY */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery__item { border-radius: 10px; }

  /* PRICES */
  .price-card { padding: 20px; }
  .price-card__price { font-size: 1.2rem; }

  /* BOOKING */
  .booking-section { padding: 56px 0; }
  .booking__form-card { padding: 20px 16px; border-radius: 16px; }
  .booking__success { padding: 28px 16px; }
  .booking__success h3 { font-size: 1.6rem; }
  .booking__success-icon { font-size: 3rem; margin-bottom: 14px; }

  /* STATUS CHECK */
  .status-section { padding: 48px 0; }
  .status-check h3 { font-size: 1.4rem; }

  /* CONTACTS */
  .contact-card { padding: 16px; gap: 12px; }
  .contact-card__icon { width: 44px; height: 44px; border-radius: 12px; }
  .contact-card__icon svg { width: 22px; height: 22px; }
  .contacts__cta { padding: 24px 16px; }

  /* SECTION */
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Footer safe area for iPhone notch */
  .footer { padding-bottom: max(32px, env(safe-area-inset-bottom, 32px)); }

  /* Gallery empty state */
  .gallery__empty { padding: 32px 16px; font-size: 1rem; }

  /* Price card footer on very small screens */
  .price-card__footer { flex-wrap: wrap; gap: 6px; }

  /* Section titles on very small screens */
  .section__title { margin-bottom: 20px; }
}
