/* Simobeauty - Public Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #FF4D8D;
  --secondary: #FFB347;
  --accent: #9B59B6;
  --bg: #FFF5F8;
  --text: #2D3436;
  --text-light: #636e72;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(255, 77, 141, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.nav-open {
  overflow: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }

a { color: var(--primary); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 77, 141, 0.1);
}

.header-inner,
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-min-h, 72px);
  height: auto;
  padding: 0.65rem 0;
  gap: 1rem;
}

.logo { flex-shrink: 0; }

.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--text);
}

.logo-icon { color: var(--primary); font-size: 1.2rem; }
.logo-text {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.logo-img {
  height: var(--logo-height, 44px);
  width: auto;
  max-width: calc(var(--logo-height, 44px) * 5);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.main-nav {
  display: flex; align-items: center; gap: 1.5rem;
  margin-left: auto;
}

.main-nav a {
  color: var(--text); font-size: 0.9rem; font-weight: 500;
  position: relative;
}

.main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: rgba(255, 77, 141, 0.08);
  border: 1px solid rgba(255, 77, 141, 0.2);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  min-width: 48px; min-height: 48px;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-actions {
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.65rem;
  border-radius: 50px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 77, 141, 0.22);
}
.share-btn-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.share-graphic {
  display: block;
  width: 100%;
  height: 100%;
}
.share-btn-ok {
  background: linear-gradient(135deg, #00b894, #00cec9) !important;
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.28) !important;
}

@media (min-width: 769px) {
  .share-btn { padding: 0.5rem 1.35rem 0.5rem 0.85rem; font-size: 0.85rem; }
  .share-btn-graphic { width: 24px; height: 24px; }
  .share-btn-label { display: inline; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn-white { background: var(--white); color: var(--primary); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* Hero */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 4rem 0;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, #ffe0ec 40%, #f3e5ff 100%);
}

.hero-with-photo .hero-bg {
  background:
    linear-gradient(135deg, rgba(255, 245, 248, 0.88) 0%, rgba(255, 224, 236, 0.82) 50%, rgba(243, 229, 255, 0.85) 100%),
    var(--hero-image) center/cover no-repeat;
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--white); border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  margin-bottom: 1.5rem; box-shadow: var(--shadow);
}

.hero-sub {
  font-size: 1.15rem; color: var(--text-light);
  margin: 1.25rem 0 2rem; max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-shapes .shape {
  position: absolute; border-radius: 50%; opacity: 0.5;
}
.shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; opacity: 0.15 !important; }
.shape-2 { width: 250px; height: 250px; background: var(--secondary); bottom: 10%; right: 15%; opacity: 0.2 !important; }
.shape-3 { width: 180px; height: 180px; background: var(--accent); top: 30%; right: 30%; opacity: 0.15 !important; }

/* Sections */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 0.5rem;
}
.section-cta { margin-top: 2rem; }
.section-cta.center { text-align: center; }

/* Page hero */
.page-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--bg), #ffe0ec);
  text-align: center;
}
.page-hero p { color: var(--text-light); margin-top: 0.75rem; }
.page-hero-facebook { background: linear-gradient(135deg, #1877f2, #0d47a1); color: var(--white); }
.page-hero-facebook .section-tag { color: #90caf9; }
.page-hero-facebook p { color: rgba(255,255,255,0.8); }

.page-hero-tiktok {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: var(--white);
}
.page-hero-tiktok .section-tag { color: var(--secondary); }
.page-hero-tiktok p { color: rgba(255,255,255,0.7); }

/* Facebook embed responsive */
.fb-video, .fb-video span, iframe {
  max-width: 100% !important;
}
.facebook-page-grid, .facebook-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}
.facebook-video-item, .facebook-preview-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 0.75rem;
}
.facebook-video-title {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  padding: 0 0.25rem;
}
.facebook-section { background: linear-gradient(180deg, var(--bg), #eef4ff); }

.page-hero-tiktok .section-tag { color: var(--secondary); }
.page-hero-tiktok p { color: rgba(255,255,255,0.7); }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid rgba(255, 77, 141, 0.08);
}
.service-card:hover { transform: translateY(-4px); }

.service-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.service-cat { font-size: 0.75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; }
.service-price { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.service-duration { font-size: 0.85rem; color: var(--text-light); margin-top: 0.25rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-featured { grid-column: span 2; grid-row: span 2; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text p { color: var(--text-light); margin: 1rem 0; }
.about-features { list-style: none; margin-top: 1.5rem; }
.about-features li { padding: 0.5rem 0; font-size: 0.95rem; }
.about-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}
.about-address { margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-light); }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  text-align: center; background: var(--white);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.team-avatar-photo {
  object-fit: cover; display: block;
  background: none;
}
.team-card h3 { font-size: 1.1rem; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.review-stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-card p { font-style: italic; color: var(--text-light); margin-bottom: 1rem; }
.review-card footer { font-weight: 600; font-size: 0.9rem; }

.reviews-full-grid { display: flex; flex-direction: column; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.review-card-full { border-left: none; border-top: 4px solid var(--primary); }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-date { display: block; font-size: 0.8rem; color: var(--text-light); }
.review-treatment { font-size: 0.8rem; color: var(--accent); font-weight: 500; }

.rating-big { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.rating-number { font-size: 4rem; font-weight: 700; color: var(--primary); font-family: var(--font-display); }
.stars { color: var(--secondary); font-size: 1.3rem; }

/* TikTok */
.tiktok-cta-box, .tiktok-empty {
  text-align: center; padding: 3rem;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tiktok-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.tiktok-grid, .tiktok-page-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tiktok-embed-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
}
.tiktok-embed-frame {
  width: 100%;
  min-height: 580px;
  height: 740px;
  max-height: 80vh;
  border: none;
  border-radius: 12px;
  background: #000;
  box-shadow: var(--shadow);
}
.tiktok-embed-caption {
  margin: 0.75rem 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--text);
}
.tiktok-embed-link {
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
  margin-top: 0.35rem;
}
.tiktok-embed-link:hover { text-decoration: underline; }
.tiktok-embed-fallback {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.tiktok-embed-fallback code {
  font-size: 0.78rem;
  word-break: break-all;
}

/* CTA */
.cta-section { padding: 0 0 5rem; }
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius); padding: 4rem 2rem;
  text-align: center; color: var(--white);
}
.cta-box h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-box p { opacity: 0.9; margin-bottom: 2rem; }

/* Services page */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem; justify-content: center;
}
.filter-tab {
  padding: 0.5rem 1.25rem; border-radius: 50px;
  border: 2px solid rgba(255, 77, 141, 0.2);
  background: var(--white); cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}

.service-category { margin-bottom: 3rem; }
.category-title {
  font-size: 1.5rem; margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.price-list { display: flex; flex-direction: column; gap: 0.75rem; }
.price-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); border-radius: 12px;
  padding: 1.25rem 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  gap: 1rem;
}
.price-item h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.price-desc { font-size: 0.82rem; color: var(--text-light); margin-top: 0.25rem; }
.price-item-price {
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
  white-space: nowrap;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1rem; box-shadow: var(--shadow);
}
.contact-card h3 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.75rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.contact-map iframe { width: 100%; height: 400px; border: 0; border-radius: var(--radius); }
.text-muted { color: var(--text-light); font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: #1a1a2e; color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem; padding-bottom: 2rem;
}
.footer-brand h3 { color: var(--white); font-family: var(--font-display); margin-bottom: 0.5rem; }
.footer-rating { margin-top: 1rem; font-size: 0.85rem; }
.footer-rating .stars { color: var(--secondary); }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-hours li { font-size: 0.85rem; padding: 0.25rem 0; }
.footer-hours span { color: rgba(255,255,255,0.5); margin-right: 0.5rem; }
.site-footer a { color: var(--secondary); }
.social-links { display: flex; gap: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; text-align: center; font-size: 0.85rem;
}

/* Booking module */
.booking-wrap { max-width: 640px; margin: 0 auto; }
.booking-wrap-wide { max-width: 960px; }
.booking-client-greeting { margin-bottom: 1.25rem; color: var(--text-light); }
.booking-step-hint { font-size: 0.85rem; color: var(--text-light); margin: -0.35rem 0 0.75rem; }
.booking-client-summary {
  background: #f8f9fb; border-radius: 10px; padding: 0.85rem 1rem;
  margin-bottom: 1rem; font-size: 0.9rem;
}
.booking-client-summary p { margin: 0.15rem 0; }
.booking-selection {
  margin-top: 0.75rem; font-size: 0.9rem; font-weight: 600; color: var(--primary);
}
.booking-step-calendar { margin-top: 0.5rem; }
.booking-calendar {
  background: #fff;
  border: 1px solid var(--border, #e8ecf2);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.06);
}
.booking-service-prompt {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: #fff7fb;
  border: 1px dashed rgba(255, 77, 141, 0.35);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.booking-service-prompt[hidden] { display: none !important; }
.booking-form select.is-highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 141, 0.18);
}
.booking-week-nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.booking-week-label {
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--text, #2d3142);
}
.booking-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}
.booking-week-day {
  background: #fafbfd;
  border: 1px solid var(--border, #e8ecf2);
  border-radius: 14px;
  padding: 0.55rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}
.booking-week-day.is-today {
  border-color: rgba(255, 77, 141, 0.45);
  background: #fff8fc;
  box-shadow: inset 0 0 0 1px rgba(255, 77, 141, 0.12);
}
.booking-week-day.is-closed { opacity: 0.6; background: #f3f4f6; }
.booking-week-day.is-pending-service { background: #fcfcfd; }
.booking-week-day-head {
  text-align: center;
  margin-bottom: 0.55rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border, #e8ecf2);
}
.booking-week-day-head .weekday {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.booking-week-day-head .day-num {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.day-today-badge {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.booking-week-slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  flex: 1;
}
.week-slot {
  border: 2px solid #00b894;
  background: #e6fff8;
  color: #00875a;
  border-radius: 10px;
  padding: 0.55rem 0.35rem;
  min-height: 44px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.week-slot:hover { background: #ccf7ec; }
.week-slot.is-selected { background: #00b894; color: #fff; border-color: #00875a; }
.week-day-closed, .week-day-empty, .week-day-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0.35rem 0;
  line-height: 1.35;
}
.week-day-hint { color: var(--primary); font-weight: 500; }
.week-day-loading {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0;
}
.week-day-loading span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.35;
  animation: bookingPulse 1s ease-in-out infinite;
}
.week-day-loading span:nth-child(2) { animation-delay: 0.15s; }
.week-day-loading span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bookingPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
.slot-empty-block {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff7f7;
  border-radius: 12px;
  border: 1px solid #ffd6d6;
}
.nav-client-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}
.nav-logout-form { display: inline; margin: 0; }
.nav-logout-form button { vertical-align: middle; }
@media (max-width: 768px) {
  .booking-wrap-wide { max-width: 100%; }
  .booking-calendar { padding: 0.85rem 0.65rem; border-radius: 14px; }
  .booking-week-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .booking-week-label {
    grid-column: 1 / -1;
    order: -1;
    font-size: 1rem;
    padding: 0.15rem 0 0.25rem;
  }
  .booking-week-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .booking-week-day {
    min-height: auto;
    padding: 0.75rem;
  }
  .booking-week-slots {
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: 0.5rem;
  }
  .week-slot {
    min-height: 48px;
    font-size: 0.92rem;
  }
  .nav-client-name { display: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .booking-week-grid {
    grid-template-columns: repeat(7, minmax(88px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
}
.booking-form label { display: block; margin-bottom: 1rem; }
.booking-form label span { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.35rem; color: var(--text-light); }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid rgba(255,77,141,0.2); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { text-align: center; margin-top: 1.5rem; color: var(--text-light); font-size: 0.9rem; }
.form-note-left { text-align: left; margin-top: 0.35rem; margin-bottom: 0.75rem; }
.form-note-left a { color: var(--pink); font-weight: 500; text-decoration: none; }
.form-note-left a:hover { text-decoration: underline; }

.gender-picker-wrap { display: block; margin-bottom: 1rem; }
.gender-picker-title {
  display: block; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 0.5rem; color: var(--text-light);
}
.gender-picker {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.gender-card { position: relative; cursor: pointer; }
.gender-card input {
  position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.gender-card-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; padding: 1.1rem 0.75rem;
  border-radius: 16px; border: 2px solid rgba(255, 77, 141, 0.12);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.gender-card:hover .gender-card-inner {
  border-color: rgba(255, 77, 141, 0.35);
  transform: translateY(-1px);
}
.gender-symbol {
  font-size: 1.75rem; line-height: 1;
  color: var(--primary); opacity: 0.85;
}
.gender-name { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.gender-card input:checked + .gender-card-inner {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(255, 77, 141, 0.1), rgba(155, 89, 182, 0.06));
  box-shadow: 0 6px 18px rgba(255, 77, 141, 0.18);
}
.gender-card input:checked + .gender-card-inner .gender-symbol { opacity: 1; }
.gender-card input:focus-visible + .gender-card-inner {
  outline: 2px solid var(--primary); outline-offset: 2px;
}
.btn-block { width: 100%; min-height: 48px; }

.alert-box {
  padding: 1.25rem 1.5rem; border-radius: 12px; margin-bottom: 1.5rem;
}
.alert-success { background: #e6fff8; color: #00875a; border: 1px solid #b7ebd4; }
.alert-info { background: #eef4ff; color: #1d4ed8; border: 1px solid #c7d7fe; }
.alert-error { background: #ffeaea; color: #c0392b; border: 1px solid #f5c6cb; }

.booking-step { margin-bottom: 2rem; }
.booking-step h3 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.75rem; color: var(--primary); }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
}
.slot {
  text-align: center; padding: 0.65rem 0.5rem;
  border-radius: 10px; font-size: 0.9rem; font-weight: 600;
}
.slot-free {
  background: #e6fff8; border: 2px solid #00b894; color: #00875a;
  cursor: pointer; display: block;
}
.slot-free input { display: none; }
.slot-free:has(input:checked) { background: #00b894; color: #fff; }
.slot-busy {
  background: #f1f2f6; color: #b2bec3;
  border: 2px solid #dfe6e9; text-decoration: line-through;
}
.slot-empty { color: var(--text-light); font-size: 0.9rem; grid-column: 1 / -1; }
.slot-legend { display: flex; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.8rem; }
.slot-legend-item.free::before { content: '■'; color: #00b894; margin-right: 0.25rem; }
.slot-legend-item.booked::before { content: '■'; color: #b2bec3; margin-right: 0.25rem; }

.client-check-list {
  max-height: 240px; overflow-y: auto;
  border: 1px solid var(--border, #e0e4ec); border-radius: 8px;
  padding: 0.75rem; margin-top: 0.5rem;
}
.inline-form-row { display: flex; gap: 0.5rem; align-items: center; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

.tiktok-grid, .tiktok-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

/* Desktop nav */
@media (min-width: 769px) {
  .nav-toggle { display: none !important; }
  .nav-overlay { display: none !important; }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: static;
    transform: none;
    padding: 0;
    overflow: visible;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
    z-index: 1000;
    overflow: visible;
  }

  .header-inner,
  .header-bar {
    min-height: var(--header-min-h, 64px);
    height: auto;
    padding: 0.5rem 0;
    flex-wrap: nowrap;
    align-items: center;
  }
  .logo {
    font-size: 1.25rem;
    min-width: 0;
    flex: 1 1 auto;
  }
  .logo-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav { margin-left: 0; }
  .header-actions {
    margin-left: auto;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .share-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    padding: 0;
    gap: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .share-btn-graphic {
    width: 30px;
    height: 30px;
  }
  .share-btn-label {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }
  .share-btn:hover,
  .share-btn:active {
    transform: none;
    box-shadow: none;
  }
  .share-btn-ok {
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-toggle { display: flex; flex-shrink: 0; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.25rem 2rem;
    gap: 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }

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

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open { overflow: hidden; }

  .main-nav a {
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .main-nav a.active::after { display: none; }
  .main-nav a.active {
    color: var(--primary);
    font-weight: 600;
  }

  .main-nav .btn,
  .main-nav .nav-cta {
    margin-top: 1rem;
    width: 100%;
    min-height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .hero-sub { font-size: 1rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .shape-1 { width: 220px; height: 220px; right: -80px; }
  .shape-2 { width: 140px; height: 140px; }
  .shape-3 { display: none; }

  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 1.5rem; }

  .page-hero { padding: 2.5rem 0 2rem; }

  .cards-grid,
  .reviews-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .rating-big {
    flex-direction: column;
    gap: 0.5rem;
  }

  .rating-number { font-size: 3rem; }

  .review-header {
    flex-wrap: wrap;
  }

  .review-stars { margin-left: auto; }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .filter-tabs::-webkit-scrollbar { display: none; }

  .filter-tab {
    flex-shrink: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem;
  }

  .price-item-price {
    margin-top: 0.35rem;
    font-size: 1.2rem;
  }

  .cta-box {
    padding: 2.5rem 1.25rem;
    border-radius: 12px;
  }

  .cta-box .hero-actions {
    align-items: stretch;
  }

  .contact-map iframe { height: 280px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer { padding-top: 2.5rem; }

  .tiktok-cta-box,
  .tiktok-empty {
    padding: 2rem 1.25rem;
  }

  .facebook-page-grid,
  .facebook-preview-grid,
  .tiktok-grid,
  .tiktok-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }

  .container { padding: 0 0.85rem; }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-featured { grid-column: span 1; }

  .service-card { padding: 1.15rem; }

  .about-card,
  .contact-card {
    padding: 1.25rem;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .logo-text { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
