/* ================================================================
   TANTRA THEME — PAGE STYLES
   ================================================================ */

/* ── Homepage Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}

.hero:not(.hero--luxury)::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(196,151,74,0.07), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,151,74,0.04), transparent);
  pointer-events: none;
}

.hero:not(.hero--luxury)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-1));
  pointer-events: none;
}

.hero:not(.hero--luxury) .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* only non-luxury hero uses faded bg img */
.hero:not(.hero--luxury) .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero:not(.hero--luxury) .hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-12)) var(--gutter) var(--space-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 900px) {
  .hero:not(.hero--luxury) .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
}

.hero__content { max-width: 560px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(var(--text-3xl), 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
  max-width: 45ch;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(196,151,74,0.15);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: rgba(8,8,7,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196,151,74,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__visual-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,151,74,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.hero__visual-badge-text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.hero__visual-badge-text span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── Available Today section ──────────────────────────────────── */
.available-today {
  background: var(--bg-0);
}

.available-today__branch-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

/* ── Trust block ──────────────────────────────────────────────── */
.trust-block {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-0));
  border-top: var(--border);
  border-bottom: var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
}

.trust-item {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.trust-item__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-4);
  background: rgba(196,151,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-item__icon svg { width: 24px; height: 24px; }

.trust-item h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.trust-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 22ch;
  margin: 0 auto;
}

/* ── Contact teaser ───────────────────────────────────────────── */
.contact-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.contact-mini-card {
  background: var(--bg-2);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--dur-base);
}

.contact-mini-card:hover { border-color: var(--surface-3); }

.contact-mini-card h3 {
  font-size: var(--text-xl);
  font-family: var(--font-display);
}

.contact-mini-card address {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* ── Booking page ─────────────────────────────────────────────── */
.booking-page {
  padding-bottom: var(--space-24);
}

.booking-page .page-header { margin-bottom: 0; }

.booking-inner {
  max-width: 800px;
  margin: 0 auto;
}

.booking-step__header {
  margin-bottom: var(--space-8);
}

.booking-step__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.booking-step__subtitle {
  color: var(--text-secondary);
}

/* Date quick-pick */
.date-quickpick {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.date-quickpick-btn {
  padding: var(--space-3) var(--space-5);
  background: var(--bg-3);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  transition: all var(--dur-fast);
}

.date-quickpick-btn:hover {
  border-color: var(--gold-dim);
  color: var(--text-primary);
  background: var(--surface);
}

.date-quickpick-btn.is-active {
  background: rgba(196,151,74,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Masseuse grid inside booking */
.booking-masseuse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-4);
}

.booking-masseuse-option {
  cursor: pointer;
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-2);
  transition: all var(--dur-fast);
  display: flex;
  flex-direction: column;
}

.booking-masseuse-option:hover {
  border-color: var(--gold-dim);
}

.booking-masseuse-option.is-selected {
  border-color: var(--gold);
  background: rgba(196,151,74,0.06);
}

.booking-masseuse-option input[type="radio"] { display: none; }

.booking-masseuse-option__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
}

.booking-masseuse-option__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-masseuse-option__body {
  padding: var(--space-3) var(--space-4);
}

.booking-masseuse-option__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

.booking-masseuse-option__slot {
  font-size: var(--text-xs);
  color: var(--gold-light);
  margin-top: 2px;
}

/* Step nav */
.step-nav {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: var(--border);
}

/* ── WhatsApp result ──────────────────────────────────────────── */
.wa-result {
  background: var(--bg-2);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.wa-result__icon {
  width: 64px;
  height: 64px;
  background: rgba(37,211,102,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.wa-result__icon svg { width: 32px; height: 32px; }

.wa-result h3 {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
}

.wa-result p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 40ch;
  text-align: center;
  margin: 0 auto;
}

.wa-result__ref {
  font-size: var(--text-sm);
  color: var(--text-muted);
  background: var(--bg-3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}

.wa-result__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
  max-width: 360px;
}

/* ── Schedule page ────────────────────────────────────────────── */
.schedule-page__tabs {
  margin-bottom: var(--space-6);
  position: sticky;
  top: var(--header-height);
  background: var(--bg-1);
  z-index: var(--z-raised);
  padding: var(--space-4) 0;
}

.schedule-branch-filter {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

/* ── Pricing page ─────────────────────────────────────────────── */
.pricing-hero {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-bottom: var(--border);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-12);
  align-items: start;
}

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

.pricing-sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

/* ── Single masseuse detail ───────────────────────────────────── */
.masseuse-detail__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--border);
  background: var(--bg-3);
  max-width: 420px;
  width: 100%;
}

.masseuse-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masseuse-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.masseuse-detail__bio {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--text-secondary);
}

.masseuse-detail__sidebar-box {
  background: var(--bg-2);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.masseuse-detail__sidebar-box h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
}

.next-slot-display {
  text-align: center;
  padding: var(--space-4) 0;
}

.next-slot-display__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.next-slot-display__time {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--gold-light);
  line-height: 1;
}

/* ── Contacts page ────────────────────────────────────────────── */
.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  border: var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* ── Service pricing table (detail masáže) ───────────────────── */
.service-pricing {
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-pricing__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--bg-2);
  border-bottom: var(--border);
}

.service-pricing__head h2 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin: 0;
}

.service-pricing__currency {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
}

.service-pricing__currency .is-active {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

.service-pricing__currency .sep {
  color: var(--surface-3);
}

/* Detail pricing table — no outer border (handled by .service-pricing) */
.pricing-table--detail {
  width: 100%;
  border: none;
  border-radius: 0;
}

.pricing-table--detail thead th {
  background: var(--bg-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
  padding: var(--space-3) var(--space-6);
  border-bottom: var(--border);
}

.pricing-table--detail tbody tr {
  border-bottom: 1px solid var(--surface-2);
  transition: background var(--dur-fast);
}

.pricing-table--detail tbody tr:last-child {
  border-bottom: none;
}

.pricing-table--detail tbody tr:hover {
  background: var(--bg-3);
}

.pricing-table--detail td {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
  vertical-align: middle;
}

.pricing-table--detail td:first-child {
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  width: 30%;
}

.pricing-table--detail td:nth-child(2),
.pricing-table--detail td:nth-child(3) {
  color: var(--gold-light);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
}

/* ── Currency switcher buttons ───────────────────────────────── */
.service-pricing__currency {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.currency-btn {
  background: none;
  border: none;
  padding: var(--space-1) var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.currency-btn:hover {
  color: var(--text-secondary);
}

.currency-btn.is-active {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}
