/* ============================================================
   The Barber's — hoja de estilos
   Extraída del bloque <style> y de los estilos inline de index.html.
   Nota: los atributos style-hover="..." siguen en el HTML; son una
   directiva del runtime (support.js), no CSS, y generan sus reglas
   :hover en tiempo de ejecución.
   ============================================================ */

/* ---------- Base / reset ---------- */
html {
  scroll-behavior: auto;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #fbfaf7;
}
body {
  font-family: "Geomini", "Jost", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #d21f28;
}
a:hover {
  color: #1a1512;
}
::selection {
  background: #d21f28;
  color: #fff;
}
html {
  scrollbar-width: thin;
  scrollbar-color: #d21f28 #efe9df;
}
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: #efe9df;
}
::-webkit-scrollbar-thumb {
  background: #d21f28;
  border: 3px solid #efe9df;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1a1512;
}
::-webkit-scrollbar-corner {
  background: #efe9df;
}
*:focus-visible {
  outline: 2px solid #d21f28;
  outline-offset: 3px;
}
[data-track] {
  scrollbar-width: none;
}
[data-track]::-webkit-scrollbar {
  display: none;
}

/* ---------- Animaciones ---------- */
@keyframes kb {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 31, 40, 0.4);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(210, 31, 40, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Contenedor raíz ---------- */
.page {
  background: #fbfaf7;
  color: #1a1512;
  overflow-x: hidden;
  position: relative;
  padding-top: 62px;
}

/* ---------- Barra de progreso ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #d21f28;
  z-index: 80;
  transition: width 0.1s linear;
}

/* ---------- Navegación ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 5px 2vw;
  background: #fbfaf7;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid rgba(26, 21, 18, 0.1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  min-width: 0;
}
.nav-links-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
}
.nav-link {
  color: #1a1512;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img {
  height: 50px;
  width: 84px;
  display: block;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-link {
  color: #1a1512;
  display: flex;
}
.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(26, 21, 18, 0.18);
}
.btn-agenda {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #d21f28;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1512;
  cursor: pointer;
  border-radius: 10px;
}

/* ---------- Menú móvil ---------- */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 69;
  background: #fbfaf7;
  border-bottom: 1px solid rgba(26, 21, 18, 0.1);
  box-shadow: 0 18px 40px rgba(26, 21, 18, 0.1);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.28s ease;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 14px 6vw 22px;
}
.mobile-link {
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 21, 18, 0.08);
  color: #1a1512;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-social {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 20px;
}

/* ---------- Portada / hero ---------- */
.hero {
  min-height: calc(100svh - 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f2efe9;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.62) 100%
  );
}
.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 22px 80px;
  gap: 28px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fu 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.05s;
}
.hero-eyebrow-label {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d21f28;
  font-weight: 500;
}
.hero-title {
  margin: 0;
  font-family: "Squada One", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 8vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: #fff;
  text-shadow: 0 2px 26px rgba(26, 21, 18, 0.45);
  animation: fu 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.15s;
}
.hero-lead {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 1px 16px rgba(26, 21, 18, 0.5);
  max-width: 34ch;
  animation: fu 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.28s;
}
.hero-cta {
  animation: fu 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.4s;
}
.hero-meta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 0 22px 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(26, 21, 18, 0.5);
  flex-wrap: wrap;
  animation: fu 1s ease both;
  animation-delay: 0.55s;
}
.hero-meta-ig {
  color: #d21f28e6;
}

/* ---------- Botón CTA (compartido) ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #d21f28;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  min-height: 44px;
  box-sizing: border-box;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.arrow {
  font-size: 16px;
}

/* ---------- Elementos compartidos entre secciones ---------- */
.accent {
  color: #d21f28;
  font-weight: 500;
  font-style: normal;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d21f28;
  font-weight: 500;
}
.dash {
  width: 34px;
  height: 2px;
  background: #d21f28;
}
.dash-lg {
  width: 38px;
  height: 2px;
  background: #d21f28;
}
.px-4vw {
  padding: 0 4vw;
}
.container-1300 {
  max-width: 1300px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head--sm {
  margin-bottom: clamp(38px, 4.5vw, 56px);
}
.section-head--60 {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-title {
  margin: 0;
  text-align: center;
  font-family: "Squada One", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.05;
}
.watermark {
  position: absolute;
  font-family: "Germania One", cursive;
  font-weight: 400;
  text-fit: grow;
  font-size: clamp(120px, 20vw, 340px);
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.watermark-precios {
  left: -9px;
  top: 1318px;
  color: #d21f28;
}
.watermark-footer {
  left: -64px;
  top: 169px;
  color: #8282820d;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* ---------- Precios ---------- */
.section-precios {
  padding: clamp(90px, 12vw, 150px) 4vw;
  position: relative;
  overflow: hidden;
}
.precios-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(40px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto 100px;
  flex-direction: column;
  justify-content: center;
}
.precios-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.precios-title {
  margin: 0;
  font-family: "Squada One", sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
}
.precios-lead {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #4a423a;
  text-align: center;
  width: 100%;
  max-width: 401px;
}
.precios-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6b6155;
}
.precios-note-dot {
  color: #d21f28;
}
.precios-list {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.precio-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(26, 21, 18, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.precio-row-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.precio-idx {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #d21f28;
  letter-spacing: 0.05em;
  min-width: 22px;
}
.precio-name {
  font-family: "Squada One", sans-serif;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 600;
  white-space: nowrap;
}
.precio-price {
  font-family: "Squada One", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  color: #d21f28;
  font-weight: 600;
  white-space: nowrap;
}
.precio-note {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: #6b6155;
  padding-left: 36px;
}
.leader {
  flex: 1;
  border-bottom: 1px dotted rgba(26, 21, 18, 0.28);
  transform: translateY(-4px);
}
.precios-ig-link {
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 31, 40, 0.4);
  padding-bottom: 2px;
  padding-top: 2px;
  text-align: left;
  display: block;
  width: max-content;
  margin: 20px auto;
}

/* ---------- Galería ---------- */
.section-galeria {
  padding: clamp(90px, 12vw, 140px) 0 clamp(90px, 12vw, 140px);
  position: relative;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.marquee {
  display: flex;
  gap: clamp(14px, 1.8vw, 24px);
  width: max-content;
  padding: 8px 0;
  will-change: transform;
}
.gallery-item {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 340px);
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e4ddd1;
  transition: box-shadow 0.4s ease;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(26, 21, 18, 0.72) 100%
  );
  pointer-events: none;
}
.gallery-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gallery-caption-slash {
  color: #ff8b91;
}
.gallery-more {
  margin: 26px 0 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6155;
}
.gallery-more-link {
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 31, 40, 0.4);
  padding-bottom: 2px;
}

/* ---------- Aliados ---------- */
.section-aliados {
  padding: 0 4vw clamp(90px, 12vw, 140px);
  position: relative;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 21, 18, 0.1);
  border: 1px solid rgba(26, 21, 18, 0.1);
}
.partner-cell {
  background: #fbfaf7;
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.6vw, 34px);
  transition: background 0.4s ease;
}
.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.42;
  filter: grayscale(1);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

/* ---------- Reseñas ---------- */
.section-resenas {
  padding: 0 4vw clamp(90px, 12vw, 140px);
}
.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.5vw, 30px);
  justify-content: center;
}
.review {
  margin: 0;
  flex: 1 1 300px;
  max-width: 400px;
  box-sizing: border-box;
  position: relative;
  padding: 40px 30px 30px;
  border: 1px solid rgba(26, 21, 18, 0.1);
  background: #fff;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.review-quote {
  position: absolute;
  top: 2px;
  left: 20px;
  font-family: "Squada One", sans-serif;
  font-size: 90px;
  line-height: 1;
  color: rgba(210, 31, 40, 0.14);
}
.review-stars {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #d21f28;
  margin-bottom: 16px;
}
.review-text {
  margin: 0 0 18px;
  font-family: "Geomini", "Jost", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  font-style: normal;
  color: #1a1512;
}
.review-cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d21f28;
}

/* ---------- Visita ---------- */
.section-visita {
  padding: 0 0vw clamp(90px, 12vw, 140px);
}
.visita-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 4vw;
  padding-right: 4vw;
}
.visita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(32px, 4vw, 60px);
  align-items: stretch;
}
.visita-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 21, 18, 0.12);
}
.horario-dias {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 15px;
}
.horario-horas {
  font-family: "Space Mono", monospace;
  font-size: 15px;
  color: #d21f28;
}
.leader-h {
  flex: 1;
  border-bottom: 1px dotted rgba(26, 21, 18, 0.28);
  transform: translateY(-3px);
}
.visita-address {
  margin: 22px 0 26px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #4a423a;
}
.visita-cta {
  align-self: flex-start;
}
.map-box {
  position: relative;
  border: 1px solid rgba(26, 21, 18, 0.14);
  overflow: hidden;
  min-height: clamp(320px, 42vw, 520px);
  background: #e4ddd1;
}
.map-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  filter: grayscale(0.3) contrast(1.02);
}
.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid #d21f28;
  border-left: 2px solid #d21f28;
}
.corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid #d21f28;
  border-right: 2px solid #d21f28;
}
.corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid #d21f28;
  border-left: 2px solid #d21f28;
}
.corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid #d21f28;
  border-right: 2px solid #d21f28;
}

/* ---------- Pie ---------- */
.footer {
  border-top: 2px solid #d21f28;
  background: #1a1512;
  color: #fbfaf7;
  padding: clamp(30px, 7vw, 80px) 4vw 28px;
  overflow-y: hidden;
  overflow-x: hidden;
  position: relative;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.footer-logo {
  height: 154px;
  width: 247px;
  display: block;
}
.footer-lema {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #b3a99b;
  max-width: 32ch;
  text-align: center;
}
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
  padding-left: 2vw;
  padding-right: 2vw;
  margin: 54px auto;
  width: 100%;
  max-width: 1000px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-col-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-col-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff8b91;
}
.footer-address {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: #e2dccf;
  text-align: center;
}
.footer-zona {
  font-size: 13px;
  color: #b3a99b;
}
.footer-contact-link {
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  color: #e2dccf;
}
.footer-hours {
  font-weight: 300;
  font-size: 14px;
  color: #e2dccf;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 240, 233, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbfaf7;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.footer-bottom {
  margin-top: clamp(140px, 5vw, 56px);
  padding-top: 20px;
  border-top: 1px solid rgba(244, 240, 233, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #8a8072;
  padding-right: 2vw;
  padding-left: 2vw;
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d21f28;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 21, 18, 0.35);
  text-decoration: none;
  animation: pulse 2.4s ease-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 680px) {
  [data-navbar] {
    display: flex !important;
    justify-content: space-between !important;
  }
  [data-r="navlinks"] {
    display: none !important;
  }
  [data-r="navsocial"] {
    display: none !important;
  }
  [data-r="navdiv"] {
    display: none !important;
  }
  [data-r="navburger"] {
    display: inline-flex !important;
  }
}
@media (max-width: 560px) {
  [data-r="partners"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   RESERVAS (reserva.html) — mismo lenguaje visual de The Barber's
   ============================================================ */
.rsv-page {
  min-height: 100vh;
  background: #f0ede7;
  color: #1a1512;
  padding-bottom: 110px;
}
.rsv-page .accent {
  color: #d21f28;
  font-style: normal;
}

/* --- Barra superior --- */
.rsv-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 4vw;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6ddd1;
}
.rsv-back {
  justify-self: start;
  color: #d21f28;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.rsv-back:hover {
  color: #1a1512;
}
.rsv-brand {
  justify-self: center;
  display: block;
}
.rsv-brand-img {
  height: 34px;
  display: block;
}
.rsv-top-right {
  justify-self: end;
  color: #b0a496;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* --- Indicador de pasos --- */
.rsv-steps-wrap {
  padding: 22px 4vw 4px;
}
.rsv-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
}
.rsv-step {
  flex: 1 1 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.rsv-step::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #ddd5ca;
}
.rsv-step:first-child::before {
  display: none;
}
.rsv-step.line-on::before {
  background: #d21f28;
}
.rsv-step-dot {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: #ded8cf;
  color: #8f867d;
}
.rsv-step.is-active .rsv-step-dot,
.rsv-step.is-done .rsv-step-dot {
  background: #d21f28;
  color: #fff;
}
.rsv-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a89e93;
  text-align: center;
  white-space: nowrap;
}
.rsv-step.is-active .rsv-step-label {
  color: #1a1512;
}
.rsv-step.is-done .rsv-step-label {
  color: #6f665d;
}

/* --- Contenedor / encabezados --- */
.rsv-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 26px 4vw 0;
}
.rsv-state {
  min-height: 40vh;
}
.rsv-link {
  display: inline-block;
  margin-bottom: 16px;
  color: #6f665d;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
}
.rsv-link:hover {
  color: #d21f28;
}
.rsv-h1 {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}
.rsv-lead {
  font-size: 16px;
  color: #6f665d;
  margin: 0 0 22px;
  max-width: 640px;
}
.rsv-muted {
  color: #7a716a;
  font-size: 14px;
}
.rsv-error {
  background: rgba(210, 31, 40, 0.08);
  border: 1px solid rgba(210, 31, 40, 0.4);
  color: #a1141b;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
}
.rsv-section-title {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 26px 0 14px;
}

/* --- Buscador --- */
.rsv-search-wrap {
  position: relative;
  max-width: 480px;
  margin-bottom: 24px;
}
.rsv-search-ico {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #a89e93;
  pointer-events: none;
}
.rsv-search {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 18px 15px 46px;
  border: 1px solid #ddd2c6;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26, 21, 18, 0.04);
}
.rsv-search:focus {
  outline: none;
  border-color: #d21f28;
  box-shadow: 0 0 0 3px rgba(210, 31, 40, 0.15);
}

/* --- Sucursales --- */
.rsv-branches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.rsv-branch-card {
  text-align: left;
  border: 1px solid #e9e0d4;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 18px rgba(26, 21, 18, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.rsv-branch-card:hover {
  box-shadow: 0 20px 44px rgba(26, 21, 18, 0.16);
  transform: translateY(-3px);
}
.rsv-branch-photo {
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #e9e2d8;
}
.rsv-branch-body {
  display: block;
  padding: 16px 20px 20px;
}
.rsv-branch-rating {
  display: block;
  font-size: 13px;
  color: #7a716a;
  margin-bottom: 8px;
}
.rsv-branch-rating strong {
  color: #1a1512;
  font-weight: 700;
}
.rsv-star {
  color: #d21f28;
}
.rsv-branch-reviews {
  color: #a89e93;
}
.rsv-branch-name {
  display: block;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 5px;
}
.rsv-branch-addr {
  display: block;
  color: #7a716a;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.rsv-branch-cta {
  display: inline-block;
  color: #d21f28;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Ficha de sucursal --- */
.rsv-shop-head {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 6px;
}
.rsv-shop-photo {
  flex: 0 0 360px;
  min-height: 190px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: #e9e2d8;
}
.rsv-shop-card {
  flex: 1 1 320px;
  background: #fff;
  border: 1px solid #e9e0d4;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px rgba(26, 21, 18, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rsv-shop-rating {
  font-size: 14px;
  color: #7a716a;
  margin: 0 0 6px;
}
.rsv-shop-rating strong {
  color: #1a1512;
}
.rsv-shop-name {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.rsv-shop-addr {
  margin: 0 0 16px;
  font-size: 14px;
  color: #6f665d;
}
.rsv-shop-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rsv-shop-phone {
  color: #d21f28;
  font-weight: 700;
  font-size: 14px;
}
.rsv-pros {
  display: flex;
}
.rsv-pros .rsv-avatar {
  margin-left: -8px;
  border: 2px solid #fff;
}
.rsv-pros .rsv-avatar:first-child {
  margin-left: 0;
}
.rsv-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a1512;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.rsv-team-note {
  font-size: 13px;
  color: #a89e93;
}

/* --- Servicios --- */
.rsv-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rsv-service-card {
  border: 1px solid #e9e0d4;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rsv-service-card:hover {
  border-color: rgba(210, 31, 40, 0.4);
}
.rsv-service-card.is-in {
  border-color: #d21f28;
  box-shadow: 0 0 0 1px #d21f28;
}
.rsv-service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.rsv-service-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rsv-service-name {
  font-weight: 800;
  font-size: 16px;
}
.rsv-service-dur {
  font-size: 12px;
  color: #a89e93;
  white-space: nowrap;
}
.rsv-service-note {
  font-size: 13px;
  color: #7a716a;
}
.rsv-service-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.rsv-service-price {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  color: #1a1512;
}
.rsv-add-btn {
  border: 1px solid #cbbfb1;
  background: #fff;
  color: #1a1512;
  padding: 9px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.rsv-add-btn:hover {
  border-color: #d21f28;
  color: #d21f28;
}
.rsv-remove-btn {
  border: none;
  background: #d21f28;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.rsv-remove-btn:hover {
  background: #1a1512;
}

/* --- Barra flotante --- */
.rsv-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: #1a1512;
  box-shadow: 0 -10px 34px rgba(26, 21, 18, 0.28);
}
.rsv-bar-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rsv-bar-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rsv-bar-count {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d21f28;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.rsv-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.rsv-bar-text strong {
  color: #b9ab9c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rsv-bar-total {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.rsv-bar-btn {
  border: none;
  background: #d21f28;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.rsv-bar-btn:hover {
  background: #fff;
  color: #1a1512;
  transform: translateY(-2px);
}

/* --- Modalidad --- */
.rsv-modal-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 760px;
}
.rsv-modal-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  border: 2px solid #e9e0d4;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(26, 21, 18, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.rsv-modal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(26, 21, 18, 0.12);
}
.rsv-modal-card.is-sel {
  border-color: #d21f28;
}
.rsv-modal-emoji {
  font-size: 30px;
}
.rsv-modal-title {
  font-weight: 800;
  font-size: 18px;
}
.rsv-modal-desc {
  font-size: 13px;
  color: #7a716a;
  line-height: 1.5;
}

/* --- Asistente (layout + pestañas) --- */
.rsv-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}
.rsv-main,
.rsv-side {
  min-width: 0; /* deja que las columnas encojan (la tira hace scroll, nada desborda) */
}
.rsv-tabs {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid #e0d7ca;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rsv-tab {
  padding: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #a89e93;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.rsv-tab.is-active {
  color: #1a1512;
  border-bottom-color: #d21f28;
}

/* --- Profesional --- */
.rsv-pro-lines {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.rsv-pro-line-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}
.rsv-line-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d21f28;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.rsv-pro-dur {
  font-weight: 400;
  font-size: 13px;
  color: #a89e93;
}
.rsv-pro-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rsv-pro-opt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 7px;
  border: 2px solid #e0d7ca;
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s ease;
}
.rsv-pro-opt:hover {
  border-color: rgba(210, 31, 40, 0.5);
}
.rsv-pro-opt.is-sel {
  border-color: #d21f28;
}
.rsv-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1512;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.rsv-avatar-sm.is-star {
  background: #d21f28;
}

/* --- Fecha y hora --- */
.rsv-line-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.rsv-line-pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #ddd2c6;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}
.rsv-line-pill.is-sel {
  border-color: #1a1512;
  background: #1a1512;
  color: #fff;
}
.rsv-line-pill.is-done {
  border-color: #2e7d32;
}
.rsv-line-pill.is-sel.is-done {
  background: #1a1512;
}
.rsv-months {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.rsv-month-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid #ddd2c6;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}
.rsv-month-pill:hover {
  border-color: #1a1512;
}
.rsv-month-pill.is-sel {
  background: #1a1512;
  border-color: #1a1512;
  color: #fff;
}
.rsv-datestrip-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rsv-date-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd2c6;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #1a1512;
}
.rsv-date-nav:hover {
  border-color: #d21f28;
  color: #d21f28;
}
.rsv-datestrip {
  display: flex;
  flex: 1 1 auto; /* llena el ancho disponible entre las flechas */
  min-width: 0;   /* clave: permite scroll/arrastre interno sin desbordar la página */
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}
.rsv-datestrip:active {
  cursor: grabbing;
}
.rsv-datestrip::-webkit-scrollbar {
  display: none;
}
.rsv-date-cell {
  flex: 0 0 auto;
  width: 56px;
  padding: 10px 0;
  border: 1px solid #e0d7ca;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: border-color 0.15s ease;
}
.rsv-date-cell:hover {
  border-color: rgba(210, 31, 40, 0.5);
}
.rsv-date-dow {
  font-size: 11px;
  text-transform: uppercase;
  color: #a89e93;
}
.rsv-date-num {
  font-size: 18px;
  font-weight: 700;
}
.rsv-date-cell.is-sel {
  background: #d21f28;
  border-color: #d21f28;
  color: #fff;
}
.rsv-date-cell.is-sel .rsv-date-dow {
  color: rgba(255, 255, 255, 0.8);
}
.rsv-date-cell.is-closed {
  opacity: 0.34;
  cursor: not-allowed;
  pointer-events: none;
}
.rsv-slots {
  margin-top: 6px;
}
.rsv-slot-group {
  margin-bottom: 18px;
}
.rsv-slot-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6f665d;
  margin-bottom: 10px;
}
.rsv-slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rsv-slot {
  padding: 10px 18px;
  border: 1px solid #ddd2c6;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.rsv-slot:hover {
  border-color: rgba(210, 31, 40, 0.5);
}
.rsv-slot.is-sel {
  background: #d21f28;
  border-color: #d21f28;
  color: #fff;
}

/* --- Acciones / botones --- */
.rsv-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  align-items: center;
}
.rsv-btn {
  border: none;
  background: #d21f28;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.rsv-btn:hover {
  background: #1a1512;
  transform: translateY(-2px);
}
.rsv-btn[disabled] {
  opacity: 0.6;
  cursor: default;
  transform: none;
}
.rsv-btn-ghost {
  border: 1px solid #cbbfb1;
  background: #fff;
  color: #1a1512;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.rsv-btn-ghost:hover {
  border-color: #1a1512;
}

/* --- Formulario datos --- */
.rsv-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}
.rsv-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rsv-row-phone {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
}
.rsv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #4a423c;
}
.rsv-field input,
.rsv-field textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid #ddd2c6;
  border-radius: 10px;
  background: #fff;
}
.rsv-field input:focus,
.rsv-field textarea:focus {
  outline: none;
  border-color: #d21f28;
  box-shadow: 0 0 0 3px rgba(210, 31, 40, 0.14);
}
.rsv-consent {
  font-size: 12px;
  color: #a89e93;
  line-height: 1.5;
  margin: 0;
}

/* --- Panel resumen (oscuro) --- */
.rsv-side {
  background: #1a1512;
  color: #fff;
  border-radius: 16px;
  padding: 0 24px 22px;
  position: sticky;
  top: 84px;
  overflow: hidden;
}
.rsv-side-head {
  margin: 0 -24px 4px;
  padding: 20px 24px 16px;
}
.rsv-side-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b9ab9c;
  margin-bottom: 6px;
}
.rsv-side-branch {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0;
}
.rsv-side-line {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.rsv-side-svc {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.rsv-side-sub {
  font-size: 12px;
  color: #b9ab9c;
  margin-top: 3px;
}
.rsv-side-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 6px;
  padding-top: 16px;
}
.rsv-side-total-val {
  color: #ff5a63;
  font-size: 20px;
}
.rsv-side-mod {
  font-size: 12px;
  color: #8f857b;
  margin: 8px 0 0;
}

/* --- Confirmación --- */
.rsv-confirm {
  text-align: center;
  max-width: 640px;
}
.rsv-check {
  width: 84px;
  height: 84px;
  margin: 10px auto 18px;
  background: #d21f28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #fff;
}
.rsv-confirm-card {
  text-align: left;
  border: 1px solid #e9e0d4;
  background: #fff;
  border-radius: 16px;
  padding: 8px 22px;
  margin: 18px 0;
}
.rsv-confirm-row {
  padding: 14px 0;
  border-bottom: 1px solid #f0e9df;
}
.rsv-confirm-svc {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a89e93;
}
.rsv-confirm-meta {
  font-size: 15px;
  margin-top: 3px;
}
.rsv-confirm-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 0;
}
.rsv-confirm .rsv-btn {
  margin-top: 6px;
}

@media (max-width: 820px) {
  .rsv-layout {
    grid-template-columns: 1fr;
  }
  .rsv-side {
    position: static;
    order: -1;
  }
  .rsv-shop-photo {
    flex-basis: 100%;
  }
}
@media (max-width: 560px) {
  .rsv-step-label {
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  .rsv-row2 {
    grid-template-columns: 1fr;
  }
  .rsv-service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .rsv-service-bottom {
    width: 100%;
    justify-content: space-between;
  }
  .rsv-bar-btn {
    padding: 12px 18px;
    font-size: 12px;
  }
  .rsv-tabs {
    gap: 16px;
  }
  .rsv-months {
    gap: 8px;
  }
  .rsv-month-pill {
    padding: 8px 14px;
    font-size: 12px;
  }
  .rsv-datestrip-wrap {
    gap: 8px;
  }
  .rsv-date-cell {
    width: 48px;
  }
  .rsv-date-nav {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .rsv-actions {
    flex-wrap: wrap;
  }
}

/* ============================================================
   PANEL DE CITAS (panel.html) — vista interna del equipo
   ============================================================ */
.pnl-page {
  min-height: 100vh;
  background: #f0ede7;
  color: #1a1512;
  padding-bottom: 60px;
}
.pnl-page .accent {
  color: #d21f28;
  font-style: normal;
}

/* --- Barra superior --- */
.pnl-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 4vw;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6ddd1;
}
.pnl-back {
  justify-self: start;
  color: #d21f28;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pnl-back:hover {
  color: #1a1512;
}
.pnl-brand {
  justify-self: center;
  display: block;
}
.pnl-brand-img {
  height: 34px;
  display: block;
}
.pnl-top-right {
  justify-self: end;
}
.pnl-logout {
  border: 1px solid #cbbfb1;
  background: #fff;
  color: #1a1512;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.pnl-logout:hover {
  border-color: #d21f28;
  color: #d21f28;
}

.pnl-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 4vw 0;
}
.pnl-error {
  background: rgba(210, 31, 40, 0.08);
  border: 1px solid rgba(210, 31, 40, 0.4);
  color: #a1141b;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin: 12px 0;
}
.pnl-muted {
  color: #7a716a;
  font-size: 14px;
}

/* --- Login --- */
.pnl-login {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 4vw;
}
.pnl-login-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid #e9e0d4;
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 18px 44px rgba(26, 21, 18, 0.1);
}
.pnl-login-title {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-size: 34px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.pnl-login-lead {
  color: #6f665d;
  font-size: 14px;
  margin: 0 0 20px;
}
.pnl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #4a423c;
}
.pnl-input {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid #ddd2c6;
  border-radius: 10px;
  background: #fff;
}
.pnl-input:focus {
  outline: none;
  border-color: #d21f28;
  box-shadow: 0 0 0 3px rgba(210, 31, 40, 0.14);
}
.pnl-hint {
  font-size: 12px;
  color: #a89e93;
  margin: 14px 0 0;
}
.pnl-hint code {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  background: #f4f0e9;
  padding: 1px 5px;
  border-radius: 4px;
}

/* --- Botones --- */
.pnl-btn {
  border: none;
  background: #d21f28;
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pnl-btn:hover {
  background: #1a1512;
  transform: translateY(-2px);
}
.pnl-btn-block {
  width: 100%;
  margin-top: 18px;
}

/* --- Encabezado del panel --- */
.pnl-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pnl-h1 {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  margin: 0;
}
.pnl-day {
  color: #6f665d;
  font-size: 15px;
  margin: 0;
  text-transform: capitalize;
}

/* --- Filtros --- */
.pnl-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.pnl-daybar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pnl-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd2c6;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  color: #1a1512;
}
.pnl-nav:hover {
  border-color: #d21f28;
  color: #d21f28;
}
.pnl-today {
  border: 1px solid #cbbfb1;
  background: #fff;
  color: #1a1512;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.pnl-today:hover {
  border-color: #1a1512;
}
.pnl-dateinput,
.pnl-select,
.pnl-search {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid #ddd2c6;
  border-radius: 999px;
  background: #fff;
  color: #1a1512;
}
.pnl-search {
  flex: 1 1 220px;
  min-width: 180px;
}
.pnl-dateinput:focus,
.pnl-select:focus,
.pnl-search:focus {
  outline: none;
  border-color: #d21f28;
  box-shadow: 0 0 0 3px rgba(210, 31, 40, 0.12);
}

/* --- Tarjetas de resumen --- */
.pnl-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.pnl-kpi {
  background: #fff;
  border: 1px solid #e9e0d4;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 6px 18px rgba(26, 21, 18, 0.04);
}
.pnl-kpi-num {
  display: block;
  font-family: "Squada One", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  color: #d21f28;
}
.pnl-kpi-next {
  font-size: 20px;
  color: #1a1512;
}
.pnl-kpi-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a89e93;
  margin-top: 4px;
}

/* --- Estado vacío --- */
.pnl-empty {
  text-align: center;
  padding: 50px 20px;
  color: #7a716a;
}
.pnl-empty-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}
.pnl-empty-msg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.pnl-empty-link {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: #d21f28;
  cursor: pointer;
}
.pnl-empty-link:hover {
  color: #1a1512;
  text-decoration: underline;
}

/* --- Agenda --- */
.pnl-agenda {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pnl-appt {
  display: flex;
  background: #fff;
  border: 1px solid #e9e0d4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(26, 21, 18, 0.04);
}
.pnl-appt.is-cancelada {
  opacity: 0.6;
}
.pnl-appt-time {
  flex: 0 0 120px;
  background: #1a1512;
  color: #fff;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.pnl-appt.is-asistida .pnl-appt-time {
  background: #2e7d32;
}
.pnl-appt.is-cancelada .pnl-appt-time {
  background: #6f665d;
}
.pnl-appt-hours {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 15px;
}
.pnl-appt-price {
  font-size: 13px;
  color: #cfc6bd;
}
.pnl-appt-body {
  flex: 1 1 auto;
  padding: 14px 18px;
  min-width: 0;
}
.pnl-appt-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.pnl-appt-client {
  font-weight: 800;
  font-size: 16px;
}
.pnl-appt-branch {
  font-size: 12px;
  color: #a89e93;
}
.pnl-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #eae3d8;
  color: #6f665d;
}
.pnl-badge.is-asistida {
  background: rgba(46, 125, 50, 0.14);
  color: #2e7d32;
}
.pnl-badge.is-cancelada {
  background: rgba(210, 31, 40, 0.12);
  color: #a1141b;
}
.pnl-mail {
  background: transparent;
  border: 1px solid #e0d7ca;
  color: #a89e93;
}
.pnl-mail.is-mail-enviado {
  border-color: rgba(46, 125, 50, 0.4);
  color: #2e7d32;
}
.pnl-mail.is-mail-pendiente {
  border-color: rgba(154, 107, 0, 0.4);
  color: #9a6b00;
}
.pnl-mail.is-mail-error {
  border-color: rgba(210, 31, 40, 0.4);
  color: #a1141b;
}
.pnl-appt-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.pnl-appt-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 3px 0;
  border-bottom: 1px dashed #f0e9df;
}
.pnl-appt-svc {
  font-weight: 700;
}
.pnl-appt-meta {
  color: #6f665d;
  font-size: 13px;
  white-space: nowrap;
}
.pnl-appt-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6f665d;
}
.pnl-appt-folio {
  font-family: "Space Mono", monospace;
  color: #d21f28;
  font-weight: 700;
}
.pnl-appt-obs {
  font-size: 13px;
  color: #6f665d;
  font-style: italic;
  margin: 8px 0 0;
}
.pnl-appt-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pnl-act {
  border: 1px solid #cbbfb1;
  background: #fff;
  color: #1a1512;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pnl-act:hover {
  border-color: #1a1512;
}
.pnl-act[disabled] {
  opacity: 0.5;
  cursor: default;
}
.pnl-act-ok {
  border-color: rgba(46, 125, 50, 0.5);
  color: #2e7d32;
}
.pnl-act-ok:hover {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}
.pnl-act-cancel {
  border-color: rgba(210, 31, 40, 0.5);
  color: #a1141b;
}
.pnl-act-cancel:hover {
  background: #d21f28;
  border-color: #d21f28;
  color: #fff;
}

@media (max-width: 720px) {
  .pnl-kpis {
    grid-template-columns: 1fr;
  }
  .pnl-appt {
    flex-direction: column;
  }
  .pnl-appt-time {
    flex-basis: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 560px) {
  .pnl-top {
    gap: 8px;
    padding: 12px 4vw;
  }
  .pnl-brand-img {
    height: 28px;
  }
  .pnl-back {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .pnl-logout {
    padding: 7px 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .pnl-daybar {
    flex: 1 1 100%;
    flex-wrap: wrap;
  }
  .pnl-dateinput {
    flex: 1 1 130px;
  }
  .pnl-select,
  .pnl-search {
    flex: 1 1 100%;
  }
  .pnl-appt-actions .pnl-act {
    flex: 1 1 auto;
    text-align: center;
  }
}
