:root {
  --cream: #F7F1E8;
  --blush: #E7C8B2;
  --black: #0A0A0A;
  --gold: #AE8A55;
  --gray: #8A8378;
  --gray-muted: #9A9A9A;
  --white: #FFFFFF;
  --line: rgba(27, 24, 21, 0.12);
  --line-light: rgba(255, 255, 255, 0.15);
  --radius: 16px;
  --radius-frame: 28px;
  --orange: #FF4D00;
}

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

html, body {
  background: #000000;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: .3px;
  text-transform: uppercase;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

/* ---------- VIEWPORT FRAME ---------- */
.frame {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: var(--radius-frame);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  background: var(--black);
  scroll-behavior: smooth;
}
.frame::-webkit-scrollbar {
  width: 0;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  mix-blend-mode: overlay;
  opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- STICKY SECTIONS STACK ---------- */
section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  padding: 120px 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 -50px 90px rgba(0,0,0,.45);
}

.micro-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--gold);
}

/* ---------- NAV ---------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
}
.logo {
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
}
.logo span {
  color: var(--white);
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links li {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-links li:hover {
  color: var(--white);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 1px;
}
.lang-toggle button {
  padding: 7px 12px;
  color: var(--gray-muted);
  transition: background 0.2s, color 0.2s;
}
.lang-toggle button.active {
  background: var(--white);
  color: var(--black);
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gray-muted);
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.social-icon-link svg {
  width: 16px;
  height: 16px;
}
.social-icon-link:hover {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
}
footer .social-icon-link {
  width: 28px;
  height: 28px;
  border-color: rgba(255,255,255,.15);
}
.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--gray-muted);
  letter-spacing: .5px;
}

.btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 30px;
  cursor: pointer;
  transition: filter .18s ease-out, background .18s ease-out, color .18s ease-out;
  font-weight: 600;
  text-align: center;
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-dark:hover {
  background: var(--white);
  color: var(--black);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  filter: brightness(1.1);
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  section { padding: 100px 24px 70px; }
}

/* ---------- 1. HERO ---------- */
#hero {
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  background: var(--black);
}
.hero-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Smooth black gradient fade at the bottom, and dark dim overlay on top */
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.98) 100%);
  pointer-events: none;
  z-index: 2;
}
#hero .crosshair {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 3;
}
.hero-panel {
  position: relative;
  z-index: 10;
  max-width: 580px;
  margin: 0;
  text-align: left;
  padding: 48px 40px;
  border-radius: 18px;
  background: rgba(10, 8, 7, 0.55);
  backdrop-filter: blur(25px);
  border: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.hero-panel.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-panel h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-panel p {
  color: var(--gray-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 0 28px;
}
.hero-panel p b {
  color: var(--white);
}

/* ---------- 2. NOSOTROS (STRATEGY STYLE) ---------- */
#about {
  background: var(--gold);
  color: var(--white);
  flex-direction: row;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
#about h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.1;
  flex: 1;
  min-width: 280px;
  text-transform: none;
}
#about .about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 500px;
  flex: 1;
  min-width: 280px;
}
#about .about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
#about .stats {
  display: flex;
  gap: 36px;
}
#about .stat b {
  display: block;
  font-size: 44px;
  font-family: Georgia, serif;
  color: var(--white);
}
#about .stat span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 880px) {
  #about { flex-direction: column; align-items: flex-start; gap: 30px; }
}

/* ---------- 3. GALERIA / PORTFOLIO (MASK REVEAL) ---------- */
.pf-wrap {
  position: relative;
  height: 300vh;
}
.pf-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 -50px 90px rgba(0,0,0,.45);
}
.pf-layer {
  position: absolute;
  inset: 0;
  background: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0);
}
.pf-layer:nth-child(1) { z-index: 3; }
.pf-layer:nth-child(2) { z-index: 2; }
.pf-layer:nth-child(3) { z-index: 1; }

.pf-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pf-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.4) contrast(1.05) brightness(0.75);
}
.pf-layer:nth-child(1) .pf-photo {
  background-image: url("/manicure-russian.png");
}
.pf-layer:nth-child(2) .pf-photo {
  background-image: url("/manicure-gelx.jpg");
}
.pf-layer:nth-child(3) .pf-photo {
  background-image: url("/pedicure-spa.png");
}

.pf-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 12px);
  opacity: .3;
  mix-blend-mode: overlay;
}
.pf-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.pf-tint {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.pf-layer:nth-child(1) .pf-tint { background: linear-gradient(180deg, rgba(231,200,178,.35), rgba(231,200,178,0) 65%); }
.pf-layer:nth-child(2) .pf-tint { background: linear-gradient(180deg, rgba(174,138,85,.35), rgba(174,138,85,0) 65%); }
.pf-layer:nth-child(3) .pf-tint { background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(27,24,21,.35) 75%); }

.pf-ghost {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.pf-ghost-track {
  display: flex;
  white-space: nowrap;
  animation: pf-marquee 24s linear infinite;
}
.pf-ghost-track span {
  font-size: 16vw;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  font-family: Georgia, serif;
  letter-spacing: -2px;
  padding-right: 6vw;
  user-select: none;
}
@keyframes pf-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pf-card {
  position: relative;
  z-index: 6;
  width: 60%;
  max-width: 480px;
  aspect-ratio: 16/10;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 30px;
  text-align: center;
}
.pf-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--blush);
}
.pf-card p {
  font-size: 12.5px;
  color: var(--cream);
  line-height: 1.5;
}

@media (max-width: 780px) {
  .pf-card { width: 85%; }
}

/* ---------- 4. SERVICES CATALOG ---------- */
#services {
  background: var(--cream);
  color: var(--black);
  overflow-y: auto;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 100px;
}
.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.services-header h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin-bottom: 10px;
}
.services-header p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

/* PROMOTIONAL ADVANTAGES BENTO */
.promo-grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.promo-grid-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(27,24,21,0.06);
}
.promo-icon {
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.promo-grid-card h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--black);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: none;
}
.promo-grid-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.category-block {
  margin-bottom: 40px;
}
.category-title {
  font-size: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--gold);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s, transform 0.28s;
}
.service-card:hover {
  box-shadow: 0 12px 24px rgba(27,24,21,.08);
  transform: translateY(-2px);
}
.service-card.selected {
  outline: 2px solid var(--gold);
}
.service-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.service-card-top h4 {
  font-size: 15px;
  line-height: 1.3;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
}
.info-bubble {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.info-bubble:hover, .info-bubble.open {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.service-description {
  display: none;
  font-size: 12px;
  color: #5b554c;
  line-height: 1.5;
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: -2px;
}
.service-description.open {
  display: block;
}
.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}
.service-price {
  font-size: 14.5px;
  font-weight: bold;
}
.service-checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--gray);
  user-select: none;
}
.service-checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ---------- 5. FAQ (ACCORDION) ---------- */
#faq {
  background: var(--white);
  color: var(--black);
}
#faq h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  margin-bottom: 30px;
}
.accordion {
  width: 100%;
  max-width: 800px;
}
.accordion-item {
  border-top: 1px solid var(--line);
}
.accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
}
.accordion-head .num {
  color: var(--gold);
  font-size: 12px;
  margin-right: 18px;
}
.accordion-head h3 {
  font-size: clamp(15px, 2vw, 20px);
  text-transform: none;
  font-family: inherit;
  font-weight: bold;
  flex: 1;
}
.accordion-head .icon {
  font-size: 20px;
  transition: transform .22s ease-out;
  color: var(--gray);
}
.accordion-item.open .icon {
  transform: rotate(45deg);
  color: var(--black);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
}
.accordion-item.open .accordion-body {
  max-height: 140px;
}
.accordion-body p {
  color: var(--gray);
  padding: 0 0 24px 38px;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---------- 6. CONTACT & FOOTER ---------- */
#contact {
  background: var(--black);
  color: var(--white);
  overflow-y: auto;
  justify-content: flex-start;
  padding-top: 100px;
}
#contact h2 {
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 38px);
  margin-bottom: 30px;
  text-transform: none;
  line-height: 1.1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  margin-bottom: 50px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input, .contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  font-family: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: var(--gray-muted);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-bottom-color: var(--gold);
}
.testimonial-block {
  max-width: 380px;
}
.testimonial-block p {
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 14px;
}
.google-reviews-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.google-reviews-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,124,0.4);
}
.google-reviews-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.google-reviews-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}
.google-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.google-stars span {
  color: #FBBC05;
  font-size: 22px;
  line-height: 1;
}
.google-reviews-cta {
  font-size: 12px;
  color: var(--gold);
  margin: 0;
  font-style: normal;
  letter-spacing: 0.02em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray);
  background-size: cover;
  background-position: center;
}
.author-info b {
  font-size: 13px;
  color: var(--white);
  display: block;
}
.author-info span {
  font-size: 11px;
  color: var(--gray-muted);
}

footer {
  margin-top: auto;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11.5px;
  color: var(--gray-muted);
}
.admin-link {
  text-decoration: underline;
  cursor: pointer;
}
.admin-link:hover {
  color: var(--white);
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; text-align: center; }
}

/* ---------- STICKY CART BAR ---------- */
.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--black);
  color: var(--white);
  transform: translateY(110%);
  transition: transform .28s ease-out;
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-bar.visible {
  transform: translateY(0);
}
.cart-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cart-info {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  letter-spacing: .5px;
}
.cart-info b {
  color: var(--white);
  font-size: 15px;
}
.cart-bar .btn {
  flex-shrink: 0;
}

/* ---------- CHECKOUT DRAWER ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 120;
  display: none;
  backdrop-filter: blur(4px);
}
.drawer-overlay.open {
  display: block;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(850px, 95vw);
  background: var(--white);
  z-index: 121;
  transform: translateX(100%);
  transition: transform .28s ease-out;
  display: flex;
  flex-direction: column;
  color: var(--black);
}
.drawer.open {
  transform: translateX(0);
}
.drawer-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Sidebar styling: dark/purple gradient, luxury look */
.wizard-sidebar {
  background: linear-gradient(135deg, #1a1625, #080808);
  color: var(--white);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.wizard-sidebar .logo {
  font-size: 18px;
  margin-bottom: 40px;
}

.wizard-steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wizard-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}

.wizard-step-item.active {
  opacity: 1;
  transform: translateX(4px);
}

.wizard-step-item .step-num {
  font-family: monospace;
  font-size: 13px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-step-item.active .step-num {
  background: var(--gold);
  color: var(--white);
}

.wizard-step-item .step-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right content styling */
.wizard-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
}

.wizard-content .drawer-head {
  padding: 30px 40px 20px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wizard-content .drawer-body {
  padding: 0 40px 40px;
  flex: 1;
  overflow-y: auto;
}

.drawer-close {
  font-size: 24px;
  color: var(--gray);
  cursor: pointer;
}
.drawer-close:hover {
  color: var(--black);
}

.mobile-step-indicator {
  display: none; /* hidden on desktop */
}

/* Step Panes */
.wizard-step-pane {
  display: none;
}
.wizard-step-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-pane-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
  text-transform: none;
}

.step-pane-subtitle {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Service item in wizard */
.wizard-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.wizard-category-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin: 18px 0 8px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}
.wizard-category-title:first-of-type {
  margin-top: 0;
}

.wizard-service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  gap: 8px;
}

.wizard-service-item:hover {
  background: #f0e9dd;
}

.wizard-service-item.selected {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(174,138,85,0.08);
}

.wizard-svc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.wizard-svc-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
}

.wizard-svc-price {
  text-align: right;
}

.price-normal {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.price-old {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--gray);
  margin-right: 6px;
}

.price-new {
  font-size: 13.5px;
  font-weight: bold;
  color: #c9933b;
}

.wizard-nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.wizard-nav-buttons .btn {
  flex: 1;
}

/* Time Slot grid buttons */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.time-slot-btn {
  padding: 12px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot-btn:hover:not(:disabled) {
  background: #f0e9dd;
  border-color: var(--gold);
}

.time-slot-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.time-slot-btn.busy {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(0,0,0,0.05);
  color: var(--gray);
}

/* Client Welcome Badge */
.client-welcome-badge {
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.client-welcome-badge.recurrent {
  background: #f4faf6;
  border: 1px solid #1a8038;
}

.client-welcome-badge.new {
  background: #fdfaf3;
  border: 1px solid var(--gold);
}

.client-welcome-badge .badge-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}

.client-welcome-badge.recurrent .badge-title {
  color: #1a8038;
}

.client-welcome-badge .badge-desc {
  font-size: 12px;
  color: var(--gray);
}

.client-welcome-badge.recurrent .badge-desc {
  color: #2b613c;
}

.form-input-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 2px;
}

.drawer-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-form input, .drawer-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.drawer-form input:focus {
  border-color: var(--gold);
}

/* Mobile responsive rules */
@media (max-width: 780px) {
  .drawer {
    width: 100vw;
  }
  .drawer-container {
    grid-template-columns: 1fr;
  }
  .wizard-sidebar {
    display: none;
  }
  .mobile-step-indicator {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: bold;
  }
  .wizard-content .drawer-head {
    padding: 20px 24px;
  }
  .wizard-content .drawer-body {
    padding: 0 24px 24px;
  }
}

.pay-methods {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.pay-methods label {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gray);
}
.pay-methods input {
  display: none;
}
.pay-methods label.active {
  border-color: var(--black);
  background: var(--cream);
  color: var(--black);
}
.pay-methods svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.pay-note {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 4px;
}
.drawer-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

/* ---------- SIMULATED PAYMENT DIALOG ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.payment-modal {
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.3s;
}
.modal-overlay.open .payment-modal {
  transform: scale(1);
}

/* ===================== AI CHAT PANEL ===================== */
#chatPanel {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 370px;
  max-height: min(600px, calc(100vh - 120px));
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: #faf8f5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,0,0,0.07);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), opacity 0.22s ease;
}
#chatPanel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: linear-gradient(150deg, #0f0d0b 0%, #1e1a16 100%);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(193,154,107,0.18);
}
.chat-header-info { display: flex; align-items: center; gap: 11px; }
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a97a 0%, #e5c99a 100%);
  color: #1a1410;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,169,122,0.3);
}
.chat-header-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #c9a97a;
  font-family: 'Outfit', sans-serif;
}
.chat-header-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
  font-family: 'Outfit', sans-serif;
}
.chat-close-btn {
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); }

/* Start View */
.chat-start { padding: 18px; flex: 1; overflow-y: auto; }
.chat-start-intro { margin-bottom: 16px; }
.chat-start-bubble {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 13px 15px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #2a2a2a;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
.chat-start-field { margin-bottom: 9px; }
.chat-start-field input {
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  border: 1.5px solid #e6e0d6;
  border-radius: 12px;
  font-size: 13.5px;
  font-family: 'Outfit', sans-serif;
  color: #1a1410;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.chat-start-field input:focus { border-color: #c9a97a; }
.chat-start-btn {
  width: 100%;
  padding: 12px;
  background: #1a1410;
  color: #c9a97a;
  border: none;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.chat-start-btn:hover { background: #2d261e; }
.chat-start-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Conversation View */
.chat-convo {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.chat-messages { display: flex; flex-direction: column; gap: 10px; }
.chat-msg { display: flex; flex-direction: column; max-width: 85%; }
.chat-msg-user { align-self: flex-end; align-items: flex-end; }
.chat-msg-assistant, .chat-msg-admin { align-self: flex-start; align-items: flex-start; }
.chat-msg-label {
  font-size: 9.5px; letter-spacing: 0.5px; text-transform: uppercase;
  color: #c9a97a; font-weight: 700; margin: 0 0 3px 4px;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.52;
  word-wrap: break-word;
  font-family: 'Outfit', sans-serif;
}
.chat-msg-user .chat-bubble {
  background: #1a1410;
  color: #f5f2ee;
  border-bottom-right-radius: 4px;
  white-space: pre-wrap;
}
.chat-msg-assistant .chat-bubble {
  background: #fff;
  color: #2a2a2a;
  border: 1px solid rgba(0,0,0,0.07);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.chat-msg-admin .chat-bubble {
  background: linear-gradient(135deg, #c9a97a, #d4b88a);
  color: #fff;
  border-bottom-left-radius: 4px;
  white-space: pre-wrap;
}
.chat-typing { display: flex; gap: 5px; align-items: center; padding: 2px 0; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #c9a97a;
  animation: chatBlink 1.2s infinite both;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatBlink { 0%, 80%, 100% { opacity: 0.2; } 40% { opacity: 1; } }

/* Inline action buttons */
.chat-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  border: none;
  letter-spacing: 0.3px;
}
.chat-action-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.chat-btn-book {
  background: #1a1410;
  color: #c9a97a;
  border: 1px solid rgba(201,169,122,0.4);
}
.chat-btn-cancel {
  background: transparent;
  color: #888;
  border: 1px solid #ddd;
}

/* Input Bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  flex-shrink: 0;
}
.chat-input-bar input {
  flex: 1;
  border: 1.5px solid #e6e0d6;
  border-radius: 22px;
  padding: 10px 15px;
  font-size: 13.5px;
  outline: none;
  background: #faf8f5;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s;
  min-width: 0;
}
.chat-input-bar input:focus { border-color: #c9a97a; }
.chat-send-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: #1a1410;
  color: #c9a97a;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.chat-send-btn:hover { background: #c9a97a; color: #fff; transform: scale(1.05); }
.chat-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Mobile: bottom-sheet style like iMessage */
@media (max-width: 640px) {
  #chatPanel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 92svh;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.28);
  }
  #chatPanel.open { transform: translateY(0); opacity: 1; }
  .chat-header { border-radius: 22px 22px 0 0; padding-top: 14px; }
}
.modal-header {
  background: var(--black);
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h4 {
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--blush);
}
.modal-body {
  padding: 24px;
}
.modal-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 18px;
  text-align: center;
}
.payment-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.payment-input-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: -6px;
}
.payment-input-group input {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-family: monospace;
}
.payment-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.simulator-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0.5;
}
.simulator-badges svg {
  height: 20px;
  width: auto;
}
.payment-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---------- PERSISTENT CHROME ---------- */
.persistent {
  position: fixed;
  z-index: 100;
}
.section-indicator {
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-indicator .count {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white);
  background: rgba(0, 0, 0, .5);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: monospace;
}
.section-indicator .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, .5);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-menu {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #000000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-menu span {
  width: 16px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.btn-menu.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.btn-menu.active span:nth-child(2) { opacity: 0; }
.btn-menu.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- NAV OVERLAY ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.overlay-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.overlay-links li {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-muted);
  cursor: pointer;
  transition: color 0.25s, transform 0.25s;
}
.overlay-links li:hover {
  color: var(--white);
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ---------- 4K / WIDESCREEN MONITORS (MIN 2000PX) ---------- */
@media (min-width: 2000px) {
  .frame {
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
  }
  section {
    padding: 160px 7vw 130px;
  }
  .micro-label {
    font-size: 15px;
  }
  .hero-panel {
    max-width: 760px;
    padding: 64px 56px;
  }
  .hero-panel h1 {
    font-size: clamp(44px, 5.2vw, 76px);
  }
  .hero-panel p {
    max-width: 600px;
    font-size: 18px;
  }
  .btn {
    font-size: 14px;
    padding: 16px 32px;
  }
  .logo {
    font-size: 26px;
  }
  .nav-links li {
    font-size: 14px;
  }
  #about h2 {
    font-size: clamp(38px, 4vw, 68px);
  }
  #about .about-content p {
    font-size: 18px;
    max-width: 700px;
  }
  #about .stat b {
    font-size: 64px;
  }
  #about .stat span {
    font-size: 15px;
  }
  .pf-ghost-track span {
    font-size: 16vw;
  }
  .pf-card {
    max-width: 680px;
    padding: 50px;
  }
  .pf-card h4 {
    font-size: 26px;
  }
  .pf-card p {
    font-size: 16px;
  }
  .services-header h2 {
    font-size: clamp(36px, 4vw, 56px);
  }
  .services-header p {
    font-size: 17px;
  }
  .category-title {
    font-size: 24px;
  }
  .service-card-top h4 {
    font-size: 18px;
  }
  .service-price {
    font-size: 18px;
  }
  .service-checkbox-label {
    font-size: 14px;
  }
  .accordion-head h3 {
    font-size: clamp(18px, 2.4vw, 28px);
  }
  .accordion-body p {
    font-size: 16px;
    max-width: 800px;
  }
  .accordion-head .num {
    font-size: 16px;
  }
  .accordion-head .icon {
    font-size: 28px;
  }
  #contact h2 {
    font-size: clamp(38px, 4vw, 58px);
  }
  .contact-form input, .contact-form textarea {
    font-size: 18px;
  }
  .testimonial-block p {
    font-size: 18px;
    max-width: 550px;
  }
  .author-info b {
    font-size: 16px;
  }
  .author-info span {
    font-size: 14px;
  }
  footer {
    font-size: 14px;
  }
  .cart-info {
    font-size: 16px;
  }
  .cart-info b {
    font-size: 18px;
  }
  .drawer-head h3 {
    font-size: 22px;
  }
  .drawer-item {
    font-size: 16px;
  }
  .drawer-summary {
    font-size: 16px;
  }
}

/* ---------- GUEST BOOKING & TABS ---------- */
.wizard-tabs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.wizard-tabs .tab-btn {
  background: transparent;
  color: var(--gray-muted);
  border: none;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}
.wizard-tabs .tab-btn.active {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* ---------- SERVICE DESCRIPTION DRAWERS ---------- */
.service-desc-drawer {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 16px;
  font-size: 13px;
  color: var(--gray-muted);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  margin-left: 8px;
}
.service-desc-drawer.open {
  max-height: 200px;
  opacity: 1;
  padding: 12px 16px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.wizard-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gray-muted);
  background: transparent;
  color: var(--gray-muted);
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.2s ease;
  vertical-align: middle;
}
.wizard-info-btn:hover, .wizard-info-btn.open {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.wizard-svc-duration {
  font-size: 11.5px;
  color: var(--gray-muted);
  margin-left: 4px;
}

.wizard-service-item.disabled {
  opacity: 0.3;
  pointer-events: none;
  background: var(--cream);
  border-color: transparent;
  filter: grayscale(80%);
}

/* ---------- ERROR TOOLTIP BUBBLES ---------- */
.error-bubble-tooltip {
  position: absolute;
  background: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(174, 138, 85, 0.25);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 280px;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.error-bubble-tooltip.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.error-bubble-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(18, 16, 14, 0.96);
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 24px;
  right: 24px;
  background: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid var(--gold);
  border-radius: 16px;
  padding: 20px 28px;
  z-index: 9000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(174, 138, 85, 0.15);
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 800px;
  margin: 0 auto;
}

.cookie-banner.show {
  bottom: 24px;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.cookie-banner .btn {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 12px;
}

@media (max-width: 780px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    padding: 16px;
  }
  .cookie-banner.show {
    bottom: 84px;
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }
}

/* ---------- FLOATING ASK FAB ---------- */
.floating-ask-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(174,138,85,0.4);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: 'Outfit', sans-serif;
}
.floating-ask-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(174,138,85,0.6);
  background: #bd9a65;
}
.floating-ask-btn svg {
  transition: transform 0.3s;
}
.floating-ask-btn:hover svg {
  transform: rotate(10deg) scale(1.1);
}

/* Compact, non-overlapping floating button on mobile */
@media (max-width: 780px) {
  .floating-ask-btn {
    bottom: 16px;
    right: 16px;
    padding: 11px 16px;
    font-size: 11px;
    gap: 6px;
    max-width: calc(100% - 32px);
  }
  .floating-ask-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .ask-btn-text {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .floating-ask-btn {
    padding: 12px;
    border-radius: 50%;
  }
  .floating-ask-btn .ask-btn-text {
    display: none;
  }
}

/* ---------- ASK INQUIRY MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  display: flex;
  opacity: 1;
}
html[lang="es"] .en-content { display: none; }
html[lang="en"] .es-content { display: none; }
.ask-modal {
  background: #12100E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px;
  width: 90%;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .ask-modal {
  transform: translateY(0);
}
.ask-modal h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin: 0;
  text-transform: none;
}
.ask-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.ask-modal .modal-header .drawer-close {
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-muted);
  line-height: 1;
  transition: color 0.2s;
}
.ask-modal .modal-header .drawer-close:hover {
  color: var(--white);
}
.ask-modal .form-field-group {
  margin-bottom: 16px;
}
.ask-modal .form-field-group label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-muted);
  display: block;
  margin-bottom: 6px;
}
.ask-modal .form-field-group input,
.ask-modal .form-field-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #1C1816;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.ask-modal .form-field-group input:focus,
.ask-modal .form-field-group textarea:focus {
  border-color: var(--gold);
}
.ask-modal .form-field-group textarea {
  resize: none;
}

/* ---------- CUSTOM INLINE CALENDAR ---------- */
.calendar-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius, 8px);
  padding: 16px;
  background: var(--white);
  margin-bottom: 20px;
}
.calendar-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.calendar-month-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--black);
}
.calendar-nav-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 10px;
  color: var(--gold);
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s;
}
.calendar-nav-btn:hover {
  background: var(--cream);
}
.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.calendar-days-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50%;
  color: var(--black);
  transition: all 0.2s;
}
.calendar-day:hover:not(.disabled):not(.padding-day) {
  background: var(--cream);
  color: var(--black);
}
.calendar-day.padding-day {
  color: var(--gray-muted);
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.calendar-day.disabled {
  color: var(--gray-muted);
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-day.today {
  border: 1px dashed var(--gold);
}
.calendar-day.selected {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(193, 154, 107, 0.4);
}

/* ---------- TERMS AGREEMENT WRAPPER ---------- */
.terms-agreement-wrapper {
  margin-top: 14px;
  padding: 12px 14px;
  background: #faf8f5;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.terms-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.terms-link-btn:hover { opacity: 0.8; }

/* ---------- TERMS MODAL — specific z-index override ---------- */
#termsModalOverlay {
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
}
#termsModalOverlay.open {
  display: flex;
  pointer-events: auto;
}

/* ---------- PREMIUM TERMS & CONDITIONS MODAL ---------- */
.terms-modal {
  background: #12100E;
  border: 1px solid var(--gold);
  border-radius: 16px;
  width: min(600px, 92vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,0.8);
  animation: modalScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.92) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.scrollable-modal-body {
  overflow-y: auto;
  padding: 24px;
  max-height: calc(85vh - 70px);
}

.terms-lang-block {
  padding: 4px 0;
}

/* ---------- ADD TO CALENDAR LINKS (confirmation step) ---------- */
.cal-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.cal-links .cal-link-btn {
  flex: 1 1 0;
  min-width: 90px;
  margin-top: 0;
}

/* ---------- BASELINE DRAWER SUMMARY ROW STYLES ---------- */
.drawer-summary {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.drawer-summary .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--black);
}
.drawer-summary .row span:first-child {
  color: var(--gray);
}
.drawer-summary .muted {
  font-size: 11.5px;
  color: var(--gray-muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* ---------- MOBILE UI OVERRIDES ---------- */
@media (max-width: 780px) {
  .hero-panel {
    padding: 30px 20px !important;
    margin: 0 16px !important;
    max-width: calc(100% - 32px) !important;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 16px 20px !important;
  }
  .nav .logo {
    font-size: 16px !important;
    letter-spacing: 1.5px !important;
  }
  .nav-right {
    gap: 8px !important;
  }
  .nav-right .lang-toggle button {
    padding: 5px 8px !important;
    font-size: 10px !important;
  }
  .nav-right .btn {
    padding: 10px 18px !important;
    font-size: 9.5px !important;
  }
  .wizard-content .drawer-head {
    padding: 16px 16px !important;
  }
  .wizard-content .drawer-body {
    padding: 0 16px 20px !important;
  }
  .wizard-service-item {
    padding: 12px 14px !important;
  }
}

