/* ==========================================================================
   HAPPY DOGS - PELUQUERÍA CANINA
   Diseño Mobile-First (Inicio + Armar Pedido Kiosco)
   Paleta oficial: Verde Lima (#7ebc1a) & Fucsia/Magenta (#e6007e)
   ========================================================================== */

:root {
  /* Paleta de Marca */
  --color-brand-green: #7ebc1a;
  --color-brand-green-dark: #649615;
  --color-brand-green-light: #f3fae8;
  --color-brand-green-border: #9ed643;

  --color-brand-fuchsia: #e6007e;
  --color-brand-fuchsia-dark: #b80064;
  --color-brand-fuchsia-light: #fdf2f8;
  --color-brand-fuchsia-border: #f472b6;

  --color-wa-green: #25d366;
  --color-wa-green-dark: #128c7e;

  /* Neutros */
  --bg-body: #f8faf4;
  --bg-card: #ffffff;
  --text-main: #141f0c;
  --text-muted: #4e5d44;
  --text-light: #7c8d72;
  --border-subtle: #e2ecd6;

  /* Sombras Táctiles */
  --shadow-sm: 0 2px 8px rgba(20, 31, 12, 0.05);
  --shadow-card: 0 8px 24px rgba(20, 31, 12, 0.07), 0 2px 6px rgba(20, 31, 12, 0.03);
  --shadow-card-hover: 0 12px 28px rgba(126, 188, 26, 0.18);
  --shadow-card-selected: 0 10px 26px rgba(126, 188, 26, 0.28), 0 0 0 3.5px var(--color-brand-green);
  --shadow-btn-primary: 0 8px 20px rgba(126, 188, 26, 0.35);
  --shadow-btn-wa: 0 10px 25px rgba(37, 211, 102, 0.38);

  /* Radios */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transiciones */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  position: relative;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
}

/* Huellitas decorativas */
.paw-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-paw {
  position: absolute;
  font-size: 3.2rem;
  opacity: 0.08;
  filter: grayscale(0.2);
  user-select: none;
}

.paw-1 { top: 4%; left: 4%; transform: rotate(-25deg); }
.paw-2 { top: 16%; right: 6%; transform: rotate(35deg); }
.paw-3 { bottom: 22%; left: 3%; transform: rotate(15deg); }
.paw-4 { bottom: 8%; right: 5%; transform: rotate(-15deg); }
.paw-5 { top: 50%; right: 4%; transform: rotate(40deg); }
.paw-6 { top: 72%; left: 10%; transform: rotate(-30deg); }

/* Envoltorios Responsive (Mobile First) */
.mobile-app-wrapper,
.kiosk-wrapper {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 0 0 calc(20px + env(safe-area-inset-bottom));
}

@media (min-width: 560px) {
  .mobile-app-wrapper,
  .kiosk-wrapper {
    padding: 24px 16px;
    min-height: auto;
  }

  .kiosk-container,
  .home-main {
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
  }
}

/* ==========================================================================
   PÁGINA DE INICIO (INDEX.HTML)
   ========================================================================== */
.home-page-body {
  padding-bottom: 90px; /* Espacio para barra flotante móvil */
}

.home-header {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-brand-green-light) 100%);
  padding: 20px 16px 16px;
  border-bottom: 2px solid var(--border-subtle);
  display: flex;
  justify-content: center;
}

.brand-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-oval {
  background: var(--color-brand-green);
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(126, 188, 26, 0.35);
  border-radius: 50px;
  padding: 6px 26px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-bounce);
}

.brand-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-fuchsia {
  background: var(--color-brand-fuchsia);
  padding: 1px 6px;
  border-radius: 6px;
  margin-left: 2px;
}

.ribbon-badge {
  background: var(--color-brand-fuchsia);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 8px rgba(230, 0, 126, 0.3);
  text-transform: uppercase;
  animation: pulse-subtle 2.5s infinite;
}

@keyframes pulse-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.home-main {
  background: #ffffff;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Tarjeta Hero */
.home-hero-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mascot-wrapper {
  margin-bottom: 14px;
}

.hero-mascot-circle {
  width: 104px;
  height: 104px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-brand-green-light) 0%, #ffffff 100%);
  border: 4px solid var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(126, 188, 26, 0.22);
  position: relative;
}

.mascot-icon {
  font-size: 3.5rem;
  animation: bounce-subtle 3s ease-in-out infinite;
}

.sparkle-float {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-brand-fuchsia);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2.5px solid #ffffff;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-title {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 20px;
  max-width: 380px;
}

.hero-cta-btn {
  text-decoration: none;
  width: 100%;
}

/* Previsualización de Servicios */
.services-preview-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--color-brand-green-light);
  color: var(--color-brand-green-dark);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-brand-green-border);
}

/* Cuadrícula de Paquetes con Precios a partir de */
.pricing-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-package-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
}

.pricing-package-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand-green-border);
  box-shadow: var(--shadow-card);
}

.pricing-package-card.premium-card {
  border-color: #fbcfe8;
  background: linear-gradient(180deg, #ffffff 0%, #fdf4f9 100%);
}

.pricing-package-card.premium-card:hover {
  border-color: var(--color-brand-fuchsia-border);
}

.package-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-icon-bubble {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.package-icon-bubble.green {
  background: #edf8df;
}

.package-icon-bubble.fuchsia {
  background: var(--color-brand-fuchsia-light);
}

.package-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 2px;
}

.green-tag {
  background: var(--color-brand-green-light);
  color: var(--color-brand-green-dark);
  border: 1px solid var(--color-brand-green-border);
}

.fuchsia-tag {
  background: var(--color-brand-fuchsia-light);
  color: var(--color-brand-fuchsia);
  border: 1px solid var(--color-brand-fuchsia-border);
}

.package-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
}

.package-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Fila de Precios */
.package-prices-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.price-chip {
  background: var(--bg-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-size {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-amount {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--color-brand-green-dark);
  line-height: 1.15;
}

.pricing-package-card.premium-card .price-amount {
  color: var(--color-brand-fuchsia-dark);
}

/* Lista de incluidos */
.package-features {
  background: #ffffff;
  border-top: 1.5px dashed var(--border-subtle);
  padding-top: 10px;
}

.features-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-main);
  display: block;
  margin-bottom: 6px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.features-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Aviso perros grandes no se toman */
.size-disclaimer-badge {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.4;
  margin-top: 6px;
}

/* Estilos de paquetes en el Kiosco (pedido.html) */
.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.service-price-badge {
  background: var(--color-brand-green-light);
  color: var(--color-brand-green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-brand-green-border);
}

.service-price-badge.fuchsia {
  background: var(--color-brand-fuchsia-light);
  color: var(--color-brand-fuchsia);
  border-color: var(--color-brand-fuchsia-border);
}

.service-subtype {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-brand-fuchsia);
  display: block;
  margin-bottom: 3px;
}

.receipt-highlight-item {
  background: var(--color-brand-green-light) !important;
  border-left-color: var(--color-brand-green) !important;
  font-size: 0.95rem !important;
}

/* ==========================================================================
   SECCIÓN CLIENTES SATISFECHOS (CUADRÍCULA 2xN)
   ========================================================================== */
.testimonials-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.testimonial-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-brand-green-border);
}

.testimonial-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-brand-green-light);
  position: relative;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.05);
}

.testimonial-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: var(--color-brand-green-light);
}

.testimonial-content {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 3px;
}

.testimonial-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.testimonial-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: -1px;
}

.testimonial-breed {
  font-size: 0.72rem;
  color: var(--color-brand-green-dark);
  font-weight: 700;
}

.testimonial-quote {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.35;
  flex: 1;
  margin: 4px 0 6px;
}

.testimonial-owner {
  font-size: 0.72rem;
  color: var(--color-brand-fuchsia);
  font-weight: 700;
  text-align: right;
  margin-top: auto;
}

/* Contacto WhatsApp en Inicio */
.home-contact-card {
  background: #fdfaf6;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  font-size: 1.8rem;
}

.contact-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #9a3412;
}

.contact-subtitle {
  font-size: 0.8rem;
  color: #b45309;
}

.contact-phone-box {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed #f97316;
  text-align: center;
}

.phone-number-display {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ea580c;
}

.btn-whatsapp-outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  color: var(--color-wa-green-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-wa-green);
  transition: all var(--transition-fast);
}

.btn-whatsapp-outline:hover {
  background: var(--color-wa-green);
  color: #ffffff;
}

/* Barra Fija Inferior en Móviles */
.mobile-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  border-top: 1.5px solid var(--border-subtle);
  z-index: 100;
  display: flex;
  justify-content: center;
}

.mobile-sticky-bottom-bar .sticky-cta-btn {
  max-width: 520px;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 1.05rem;
}

@media (min-width: 560px) {
  .home-page-body {
    padding-bottom: 0;
  }
  .mobile-sticky-bottom-bar {
    display: none;
  }
}

/* ==========================================================================
   PÁGINA DE ARMAR PEDIDO (PEDIDO.HTML)
   ========================================================================== */
.kiosk-container {
  background: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.header-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 12px;
}

.nav-back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.nav-back-home:hover {
  background: var(--bg-body);
  border-color: var(--color-brand-green);
}

.brand-mini-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-mini-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-brand-green);
  line-height: 1;
}

.brand-mini-sub {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.text-fuchsia-mini {
  color: var(--color-brand-fuchsia);
}

.header-spacer {
  width: 70px; /* Equilibrio visual con el botón volver */
}

/* Stepper de 3 Pasos */
.kiosk-header {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-brand-green-light) 100%);
  padding: 16px 16px 12px;
  border-bottom: 2px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stepper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 2.5px solid var(--border-subtle);
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
}

.step-connector {
  flex: 1;
  height: 3px;
  background: var(--border-subtle);
  margin: 0 6px 16px;
  border-radius: 4px;
  transition: background var(--transition-fast);
}

.step-item.active .step-circle {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(126, 188, 26, 0.22);
  transform: scale(1.1);
}

.step-item.active .step-label {
  color: var(--color-brand-green-dark);
}

.step-item.completed .step-circle {
  background: var(--color-brand-fuchsia);
  border-color: var(--color-brand-fuchsia);
  color: #ffffff;
}

.step-item.completed .step-label {
  color: var(--color-brand-fuchsia);
}

.step-connector.completed {
  background: var(--color-brand-fuchsia);
}

/* Pantallas del Kiosco */
.screen {
  display: none;
  padding: 20px 16px calc(24px + env(safe-area-inset-bottom));
  animation: fadeInSlide 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.screen.active {
  display: block;
}

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

.screen-header {
  text-align: center;
  margin-bottom: 18px;
}

.screen-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}

.screen-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.text-highlight-green {
  color: var(--color-brand-green);
}

.dog-name-display {
  color: var(--color-brand-fuchsia);
  text-decoration: underline;
  text-decoration-color: var(--color-brand-fuchsia-border);
  text-underline-offset: 3px;
}

/* Input del Nombre en Paso 1 */
.dog-name-group {
  margin-bottom: 18px;
}

.dog-name-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  padding-left: 2px;
}

.optional-tag {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 1.15rem;
  pointer-events: none;
}

.input-with-icon input {
  width: 100%;
  padding: 13px 14px 13px 44px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.input-with-icon input:focus {
  background: #ffffff;
  border-color: var(--color-brand-green);
  box-shadow: 0 0 0 3px rgba(126, 188, 26, 0.18);
}

.section-divider-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  padding-left: 2px;
}

/* ==========================================================================
   TARJETAS TÁCTILES ESTILO KIOSCO
   ========================================================================== */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kiosk-card {
  width: 100%;
  background: #ffffff;
  border: 2.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.kiosk-card:hover {
  border-color: var(--color-brand-green-border);
  box-shadow: var(--shadow-card-hover);
}

.kiosk-card:active {
  transform: scale(0.98);
}

.kiosk-card.selected {
  border-color: var(--color-brand-green);
  background: var(--color-brand-green-light);
  box-shadow: var(--shadow-card-selected);
  transform: scale(1.01);
}

.card-check-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-subtle);
  background: #ffffff;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  transition: all var(--transition-bounce);
}

.kiosk-card.selected .card-check-indicator {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #ffffff;
  transform: scale(1.1);
}

.card-icon-bubble {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: var(--radius-md);
  background: var(--color-brand-green-light);
  border: 1.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  transition: transform var(--transition-bounce);
}

.kiosk-card.selected .card-icon-bubble {
  transform: scale(1.08) rotate(4deg);
  background: #ffffff;
  border-color: var(--color-brand-green);
}

.green-bubble {
  background: #edf8df;
}

.fuchsia-bubble {
  background: var(--color-brand-fuchsia-light);
}

.card-info {
  flex: 1;
  padding-right: 24px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 3px;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.size-pill {
  display: inline-block;
  background: #ffffff;
  color: var(--color-brand-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-subtle);
  margin-top: 4px;
}

.kiosk-card.selected .size-pill {
  background: var(--color-brand-green);
  color: #ffffff;
  border-color: var(--color-brand-green);
}

/* Contador de servicios */
.selection-counter {
  margin-top: 14px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-brand-green-dark);
  background: var(--color-brand-green-light);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  border: 1.5px dashed var(--color-brand-green-border);
}

/* ==========================================================================
   BOTONES TÁCTILES DE ACCIÓN
   ========================================================================== */
.btn-primary-kiosk {
  width: 100%;
  background: linear-gradient(180deg, var(--color-brand-green) 0%, var(--color-brand-green-dark) 100%);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn-primary);
  transition: all var(--transition-bounce);
  user-select: none;
  min-height: 52px;
}

.btn-primary-kiosk:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(126, 188, 26, 0.42);
}

.btn-primary-kiosk:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary-kiosk:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-secondary-kiosk {
  background: #ffffff;
  color: var(--text-muted);
  border: 2px solid var(--border-subtle);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  transition: all var(--transition-fast);
}

.btn-secondary-kiosk:hover {
  background: var(--bg-body);
  color: var(--text-main);
}

.btn-text-kiosk {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-text-kiosk:hover {
  color: var(--color-brand-fuchsia);
}

.kiosk-actions {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  margin-top: 20px;
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding-top: 10px;
  z-index: 10;
}

.kiosk-actions.single-action {
  grid-template-columns: 1fr;
}

/* ==========================================================================
   TICKET RESUMEN & WHATSAPP
   ========================================================================== */
.receipt-card {
  background: #ffffff;
  border: 2.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.receipt-stamp {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--color-brand-green-dark);
  background: var(--color-brand-green-light);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1.5px solid var(--color-brand-green-border);
}

.receipt-date {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

.receipt-divider {
  height: 1.5px;
  background: var(--border-subtle);
  margin: 10px 0;
}

.receipt-divider.dashed {
  height: 0;
  border-top: 2px dashed #cbd5e1;
  margin: 14px 0;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  padding: 5px 0;
}

.receipt-label {
  color: var(--text-muted);
  font-weight: 600;
}

.receipt-value {
  color: var(--text-main);
  font-weight: 800;
}

.receipt-services-block {
  margin-top: 6px;
}

.receipt-services-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.receipt-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-body);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border-left: 3.5px solid var(--color-brand-fuchsia);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.receipt-footer-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1.5px solid #fef3c7;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.35;
}

.note-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.final-actions-block {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-whatsapp-giant {
  background: linear-gradient(180deg, var(--color-wa-green) 0%, var(--color-wa-green-dark) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-btn-wa);
  transition: all var(--transition-bounce);
  animation: wa-pulse 2.4s infinite;
}

@keyframes wa-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.38);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.58);
  }
}

.btn-whatsapp-giant:hover {
  transform: translateY(-2px);
}

.wa-icon-wrapper {
  background: #ffffff;
  color: var(--color-wa-green);
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-text-wrapper {
  display: flex;
  flex-direction: column;
}

.wa-action-title {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.15;
}

.wa-phone-number {
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0.95;
}

.secondary-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

