:root {
  --motion-duration: 0.22s;
  --motion-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI",
    Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --primary: #1b3022;
  --primary-deep: #061b0e;
  --secondary: #785833;
  --topbar-surface: rgba(252, 249, 244, 0.82);
  --surface: #fcf9f4;
  --surface-low: #f6f3ee;
  --surface-high: #ffffff;
  --surface-mid: #f0ede8;
  --text: #1c1c19;
  --muted: #434843;
  --outline: #c3c8c1;
  --error: #ba1a1a;
  --touch: 52px;
  /* CTA principal (detalle / pago / confirmación) */
  --cta-yellow: rgba(231, 185, 19, 1);
  --cta-yellow-text: #ffffff;
  --cta-yellow-shadow: rgba(95, 72, 8, 0.3);
  --cta-yellow-shadow-soft: rgba(95, 72, 8, 0.13);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --motion-duration: 0.01ms;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .cell-card,
  .touch-btn,
  .hero-carousel-viewport {
    transition: none !important;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  overscroll-behavior: none;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.app-shell {
  height: 100%;
  display: grid;
  grid-template-rows: 120px 1fr;
  min-height: 0;
}

.app-shell.app-shell--developer {
  grid-template-rows: 120px 1fr 44px;
}

.app-shell.app-shell--pairing {
  grid-template-rows: 1fr;
}

.app-shell.app-shell--pairing .topbar,
.app-shell.app-shell--pairing .statusbar {
  display: none;
}

.app-shell:not(.app-shell--developer) .statusbar {
  display: none;
}

/* --- Emparejamiento (código en pantalla) --- */
.pairing-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 24px 16px;
  background: linear-gradient(165deg, var(--surface-low) 0%, var(--surface) 55%);
}

.pairing-card {
  max-width: 520px;
  width: 100%;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface-high);
  box-shadow: 0 12px 40px rgba(6, 27, 14, 0.08);
  border: 1px solid var(--outline);
}

.pairing-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--primary);
}

.pairing-sub {
  margin: 0 0 16px;
  line-height: 1.45;
  color: var(--muted);
  font-size: 1rem;
}

.pairing-sub--small {
  font-size: 0.9rem;
  margin-top: 8px;
}

.pairing-sub--muted {
  font-style: italic;
}

.pairing-code {
  margin: 20px 0;
  padding: 16px 20px;
  text-align: center;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary-deep);
  background: var(--surface-mid);
  border-radius: 12px;
  border: 2px dashed var(--outline);
}

.pairing-error {
  margin: 12px 0 0;
  color: var(--error);
  font-size: 0.95rem;
}

.touch-btn--danger {
  border-color: rgba(186, 26, 26, 0.45);
  color: var(--error);
}

/* --- Top bar (mockup: 3 columnas) --- */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 0 clamp(20px, 4vw, 48px);
  min-height: 120px;
  background: var(--topbar-surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 10;
}

.topbar__left {
  justify-self: start;
}

.topbar__center {
  justify-self: center;
  text-align: center;
}

.topbar__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.topbar-back {
  visibility: hidden;
  pointer-events: none;
}

html[data-route="detail"] .topbar-back,
html[data-route="waiting"] .topbar-back,
html[data-route="confirmation"] .topbar-back {
  visibility: visible;
  pointer-events: auto;
}

.topbar-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px !important;
  min-height: 44px !important;
  min-width: auto !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.topbar-back__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.ui-icon {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.topbar-icon {
  background: none;
  border: 0;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-icon .ui-icon {
  width: 22px;
  height: 22px;
}

.topbar-icon:hover {
  opacity: 0.65;
}

.brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: 220px;
  object-fit: contain;
  border-radius: 6px;
}

.view {
  overflow: hidden;
  min-height: 0;
}

.statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
}

.statusbar p {
  margin: 0;
}

.statusbar__status,
.statusbar__idle {
  min-width: 0;
  flex: 1 1 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.statusbar__idle {
  text-align: right;
}

/* --- Botones base --- */
.touch-btn {
  min-height: var(--touch);
  min-width: var(--touch);
  border-radius: 12px;
  border: 0;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--motion-duration) var(--motion-ease), background var(--motion-duration) var(--motion-ease),
    border-color var(--motion-duration) var(--motion-ease);
  white-space: nowrap;
}

.touch-btn:active {
  transform: scale(0.98);
}

.touch-btn-primary {
  background: var(--primary);
  color: #fff;
}

.touch-btn-secondary {
  background: var(--surface-low);
  color: var(--primary);
  border: 1px solid rgba(195, 200, 193, 0.55);
}

.touch-btn-ghost {
  background: transparent;
  color: var(--primary);
}

.touch-btn--linkish {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  border: 1px dashed rgba(27, 48, 34, 0.22);
}

.screen {
  height: 100%;
  overflow: hidden;
  min-height: 0;
}

/* --- Galería --- */
.grid-screen {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(10px, 1.6vw, 16px) 0 0;
  gap: 10px;
  min-height: 0;
}

.cell-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 20px);
  min-height: 0;
  padding: 0 clamp(18px, 3.6vw, 46px) 6px;
}

.cell-card {
  background: var(--surface-high);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(6, 27, 14, 0.07);
  transition: transform var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}

.cell-card:active {
  transform: scale(0.985);
}

.cell-card.agotado,
.cell-card.reservado {
  filter: grayscale(0.8);
  opacity: 0.68;
  cursor: not-allowed;
}

.cell-image-wrap {
  position: relative;
  min-height: 0;
  /* Mismo tono que placeholder de imagen: evita halo claro entre foto y borde */
  background: #c8cfc8;
  overflow: hidden;
}

.cell-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.cell-badge,
.cell-state {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.14em;
}

.cell-badge {
  top: 10px;
  left: 10px;
  background: rgba(27, 48, 34, 0.78);
  backdrop-filter: blur(8px);
  color: #fff;
  text-transform: uppercase;
}

.cell-state {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: fit-content;
  height: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(27, 48, 34, 0.55);
  backdrop-filter: blur(3px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cell-meta {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  min-height: 0;
  align-items: center;
}

.cell-meta__text {
  min-width: 0;
  flex: 1;
}

.cell-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 600;
  color: var(--primary-deep);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-scientific {
  margin: 2px 0 0;
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
  color: var(--secondary);
  flex-shrink: 0;
  line-height: 1;
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 10px clamp(16px, 4vw, 40px);
  margin: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.gallery-footer__icon {
  width: 16px;
  height: 16px;
  opacity: 0.95;
  /* El SVG se carga como <img>: currentColor no aplica; forzar trazo claro sobre --primary */
  filter: brightness(0) invert(1);
}

.gallery-footer p {
  margin: 0;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  line-height: 1.35;
}

/* --- Split genérico --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 0;
}

.panel {
  padding: clamp(14px, 2.2vw, 28px) clamp(16px, 3.5vw, 42px);
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.panel.left {
  background: var(--surface-low);
}

.panel.right {
  background: var(--surface-high);
}

.split--detail .panel--gallery {
  gap: 14px;
}

.hero-frame {
  flex: 1;
  min-height: 0;
  display: flex;
}

.hero-image-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 27, 14, 0.16);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #dfe3df;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}

.hero-image__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 42%);
  pointer-events: none;
}

.hero-image--no-shadow {
  box-shadow: none;
  border: none;
  border-radius: 12px;
}

.payment-hero {
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(6, 27, 14, 0.14);
}

.thumb-strip {
  display: flex;
  gap: 12px;
  height: clamp(64px, 12vh, 88px);
  flex-shrink: 0;
  overflow: hidden;
}

.thumb {
  flex: 0 0 22%;
  max-width: 104px;
  border: 2px solid rgba(195, 200, 193, 0.45);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #fff;
}

.thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(27, 48, 34, 0.15);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Galería detalle — carrusel horizontal (snap en móvil; mismas diapos en escritorio) */
.hero-carousel-viewport {
  flex: 1;
  min-height: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}

.hero-carousel-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.hero-carousel-track {
  display: flex;
  flex-direction: row;
  height: 100%;
  min-height: 0;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}

.hero-carousel-slide .hero-image-wrap {
  height: 100%;
  min-height: 0;
}

/* Detalle — panel derecho (mismo tratamiento visual que .topbar + divisoria) */
.panel.right.panel--detail-copy {
  background-color: rgba(246, 243, 238, 1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.35);
  justify-content: flex-start;
  gap: clamp(6px, 1vh, 10px);
  position: relative;
}

.detail-title {
  margin: 0;
  font-family: var(--font-display);
  color: var(--primary);
}

.detail-title--display {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.detail-science {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.detail-florist {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 17px);
  font-style: italic;
  color: var(--primary);
}

.detail-traits {
  margin-top: 14px;
  padding: 0;
  box-sizing: content-box;
  color: rgba(28, 28, 25, 0);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(195, 200, 193, 0);
  border-image: none;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.detail-trait {
  display: grid;
  grid-template-columns: minmax(92px, 34%) 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.detail-trait__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(67, 72, 67, 0.75);
}

.trait-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.trait-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(27, 48, 34, 0.12);
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-sizing: border-box;
}

.trait-dot--on {
  background: var(--primary);
  border-color: rgba(27, 48, 34, 0.35);
  box-shadow: 0 0 0 2px rgba(27, 48, 34, 0.08);
}

.detail-trait--intensity {
  grid-template-columns: minmax(92px, 34%) 1fr;
}

.detail-trait__chip {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: clamp(10px, 1.15vw, 12px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary-deep);
  background: var(--surface-high);
  border: 1px solid rgba(195, 200, 193, 0.45);
  max-width: 100%;
}

.detail-description {
  margin: 8px 0 0;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.55;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
}

.price-now {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 600;
  color: var(--primary);
}

.price-now--compact {
  font-size: clamp(26px, 3.6vw, 36px);
}

.price-old {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--muted);
  text-decoration: line-through;
}

.cta-detail {
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--cta-yellow);
  color: var(--cta-yellow-text);
  padding: clamp(14px, 2.4vh, 22px) 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  box-shadow: 0 10px 28px var(--cta-yellow-shadow);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.cta-detail:active {
  transform: scale(0.99);
  filter: brightness(0.94);
}

.cta-detail.cta-detail--needs-selection {
  opacity: 0.52;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: 0 6px 16px var(--cta-yellow-shadow-soft);
}

.cta-detail.cta-detail--needs-selection:active {
  transform: none;
  filter: none;
}

.cta-detail__label {
  flex: 1;
  text-align: center;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.split--detail .info-stack {
  margin-top: 12px;
}

.split--detail .cta-detail {
  margin-top: auto;
  flex-shrink: 0;
}

.cta-detail--with-price {
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  text-align: left;
}

.cta-detail--with-price .price-block--in-cta {
  margin-top: 0;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 8px;
  flex-shrink: 0;
}

.cta-detail--with-price .price-block--in-cta .price-now {
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1;
  color: #fff;
}

.cta-detail--with-price .price-block--in-cta .price-old {
  font-size: clamp(12px, 1.35vw, 15px);
  line-height: 1;
  color: #fff;
}

.cta-detail--with-price .cta-detail__label {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface-high);
  border: 1px solid rgba(195, 200, 193, 0.28);
  border-radius: 6px;
}

.info-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(120, 88, 51, 0.12);
  color: var(--secondary);
  font-size: 16px;
}

.info-card-ico .ui-icon {
  width: 22px;
  height: 22px;
}

.info-card-ico--leaf {
  font-variation-settings: normal;
}

.info-card-text {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.35;
}

/* Pago / confirmación — móvil por defecto: fila con miniatura 64px + texto (incl. CELDA) */
.payment-summary-panel {
  background-color: rgba(246, 243, 238, 1);
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  justify-content: flex-start;
  min-height: 0;
}

.payment-summary-panel .payment-hero--summary {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(6, 27, 14, 0.12);
  display: flex;
  flex-direction: column;
}

.payment-summary-panel .payment-summary-visual {
  position: relative;
  width: 64px;
  height: 64px;
  flex: none;
}

.payment-summary-panel .payment-summary-image-wrap {
  position: absolute;
  inset: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
}

.payment-summary-panel .payment-hero--summary .hero-image {
  position: absolute;
  inset: 0;
  width: 64px;
  height: 64px;
  max-height: none;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}

.payment-summary-panel .payment-summary-image-wrap .location-float--confirm {
  display: none;
}

.payment-summary-panel .payment-summary-image-wrap .hero-image__shade {
  display: none;
}

.payment-summary-panel .payment-product-block {
  flex: 1 1 0;
  min-width: 0;
  align-self: center;
}

.payment-summary-panel .payment-product-title {
  margin: 0;
}

/* Tablet & escritorio: columna, imagen grande, chip de celda (igual que detalle) */
@media (min-width: 720px) {
  .payment-summary-panel {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px, 2vh, 20px);
  }

  .payment-summary-panel .payment-hero--summary {
    flex: 1 1 0;
    width: 100%;
    height: auto;
    min-height: clamp(200px, 38vh, 420px);
    max-height: min(52vh, 520px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(6, 27, 14, 0.16);
    min-width: 0;
  }

  .payment-summary-panel .payment-summary-visual {
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .payment-summary-panel .payment-summary-image-wrap {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
  }

  .payment-summary-panel .payment-hero--summary .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    box-sizing: border-box;
  }

  .payment-summary-panel .payment-summary-image-wrap .hero-image__shade {
    display: block;
  }

  .payment-summary-panel .payment-summary-image-wrap .location-float--confirm {
    display: block;
    top: 10px;
    right: 10px;
    bottom: auto;
  }

  .payment-summary-panel .payment-product-block {
    flex: 0 0 auto;
    align-self: stretch;
  }

  .payment-summary-panel .payment-product-celda {
    display: none;
  }
}

.payment-product-title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 500;
  color: var(--primary-deep);
}

.payment-product-sub {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.payment-product-celda {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.payment-total-bar {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(195, 200, 193, 0.45);
}

.payment-total-bar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
}

.payment-total-bar__value {
  text-align: right;
}

.payment-total-bar--wait {
  margin-top: auto;
}

.payment-iva {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(67, 72, 67, 0.65);
}

.panel.right.panel--payment-methods {
  background-color: rgba(246, 243, 238, 1);
  justify-content: flex-start;
  gap: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.35);
}

.payment-header {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 500;
  color: var(--primary-deep);
}

.payment-sub {
  margin: 6px 0 0;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--muted);
  line-height: 1.45;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 24px 16px;
  border-radius: 6px;
  border: 1px solid rgba(195, 200, 193, 0.45);
  background: #EFEDE7;
  color: var(--primary-deep);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.payment-option.selected {
  border-color: rgba(27, 48, 34, 0.55);
  background: #fff;
}

.payment-option__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.payment-option__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  width: 28px;
  flex-shrink: 0;
}

.payment-option__glyph .ui-icon {
  width: 26px;
  height: 26px;
}

.payment-option__copy {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-option__copy small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
}

.payment-option__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 0;
}

.payment-option__chev .ui-icon {
  width: 22px;
  height: 22px;
}

.payment-legal {
  margin: 0;
  margin-top: auto;
  padding-top: 6px;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(67, 72, 67, 0.55);
  text-align: center;
  max-width: 420px;
  align-self: center;
}

.panel--payment-methods .cta-detail {
  margin-top: 0;
  flex-shrink: 0;
}

/* Esperando pago — terminal centrada */
.wait-split {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: var(--surface-low);
}

.wait-split .panel--wait-terminal {
  width: 66%;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.location-float {
  position: absolute;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 8px 22px rgba(6, 27, 14, 0.25);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  min-height: 0;
}

.location-float--confirm {
  right: 10px;
  bottom: 10px;
}

.split--detail .hero-image-wrap .location-float--confirm {
  top: 10px;
  bottom: auto;
}

.location-float__k {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.location-float__v {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.panel.panel--wait-terminal {
  background-color: rgba(246, 243, 238, 1);
  border-radius: 12px;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  align-self: stretch;
}

.wait-terminal-visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 10px;
}

.wait-terminal-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: #fed2a3;
  display: grid;
  place-items: center;
  color: var(--secondary);
}

.wait-terminal-icon .ui-icon {
  width: 52px;
  height: 52px;
}

.wait-terminal-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 3px solid rgba(120, 88, 51, 0.22);
  animation: waitPulse 2s ease-out infinite;
}

@keyframes waitPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.wait-title--split {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-deep);
  max-width: 380px;
}

.wait-sub--split {
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 400px;
}

.wait-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-low);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.wait-status-pill__dots {
  display: inline-flex;
  gap: 4px;
}

.wait-status-pill__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.85;
}

.wait-status-pill__dots i:nth-child(2) {
  opacity: 0.5;
}

.wait-status-pill__dots i:nth-child(3) {
  opacity: 0.25;
}

.wait-countdown {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.wait-actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: calc(100% - 40px);
  width: max-content;
}

.wait-action-btn {
  border-radius: 999px !important;
  font-size: 12px !important;
  padding: 14px 22px !important;
  min-height: 46px !important;
  min-width: 52px !important;
}

#waitHelpBtn,
#cancelWaitBtn {
  background-color: #fff;
}

/* Confirmación */
.panel.right.panel--confirm-content {
  background-color: rgba(246, 243, 238, 1);
  justify-content: flex-start;
  gap: 8px;
  overflow-y: hidden;
  border-left: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.35);
}

.confirm-title {
  font-family: var(--font-display);
  margin-top: 0;
  margin-bottom: 0;
}

.confirm-title--hero {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 300;
  line-height: 1.15;
}

.confirm-lead {
  margin: 0;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--muted);
}

.confirm-info-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 8px;
  min-height: 0;
}

.confirm-info-row .confirm-pickup-chip {
  margin-top: 0;
  align-self: stretch;
  box-sizing: border-box;
}

.confirm-info-row .confirm-grid {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
  flex: 0 0 auto;
}

.confirm-info-row .confirm-note {
  flex: 0 1 auto;
  min-height: 0;
  align-items: flex-start;
  align-self: stretch;
  box-sizing: border-box;
}

.confirm-pickup-chip {
  margin-top: 8px;
  padding: clamp(14px, 2vh, 18px) clamp(16px, 3vw, 24px);
  border-radius: clamp(16px, 2.5vw, 22px);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.75vw, 18px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  max-width: 100%;
  hyphens: auto;
  box-shadow: none;
  border: none;
}

.confirm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.confirm-note {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(195, 200, 193, 0.35);
  border-radius: 10px;
  text-align: left;
  align-items: flex-start;
}

.confirm-note__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.confirm-note__body {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.3;
  color: var(--muted);
}

.info-card-ico--door .ui-icon {
  width: 18px;
  height: 18px;
}

.confirm-wa {
  margin-top: 8px;
}

.confirm-wa__label {
  font-size: 11px;
  color: var(--muted);
}

.confirm-wa__row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  align-items: center;
}

.confirm-wa__row .input.input--wa {
  height: 42px;
  padding: 0 12px;
  line-height: normal;
}

.confirm-wa__save {
  min-width: unset;
  width: max-content;
  flex-shrink: 0;
  height: 42px;
  min-height: 42px;
  padding: 0 12px;
  align-self: center;
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--outline);
  padding: 10px 12px;
  font-family: var(--font-display);
  font-size: 14px;
}

.input--wa {
  flex: 1;
  min-width: 0;
}

.confirm-actions {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.confirm-actions .cta-detail {
  margin-top: 0;
}

.confirm-actions__secondary {
  display: flex;
  gap: 8px;
}

.confirm-actions__half {
  flex: 1;
  min-width: 0;
}

/* Pantalla de error (#error) — tarjeta centrada */
.wait-wrap {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
}

.wait-card {
  width: min(640px, 100%);
  padding: 24px;
  background: var(--surface-high);
  border-radius: 16px;
  border: 1px solid rgba(195, 200, 193, 0.35);
}

.wait-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--primary);
}

.wait-sub {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  z-index: 40;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--primary-deep);
  color: #fff;
  font-size: 13px;
}

.hidden {
  display: none !important;
}

.error-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(28, 28, 25, 0.75);
  display: grid;
  place-items: center;
  padding: 20px;
}

.error-card {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
}

.error-card h2 {
  margin-top: 0;
  font-size: 28px;
  color: var(--error);
  font-family: var(--font-display);
}

.error-card p {
  font-size: 17px;
}

/* --- Menú oculto: configuración kiosko (5 toques en loto del pie de grilla) --- */
.kiosk-config-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  background: rgba(28, 28, 25, 0.72);
  box-sizing: border-box;
}

.kiosk-config-overlay.hidden {
  display: none !important;
}

.kiosk-config-card {
  width: min(520px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  -webkit-overflow-scrolling: touch;
}

.kiosk-config-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 4vw, 28px);
  font-family: var(--font-display);
  color: var(--primary-deep);
}

.kiosk-config-hint {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.kiosk-config-note {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.kiosk-config-note code {
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--surface-mid);
}

.kiosk-config-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.35;
  color: var(--text);
}

.kiosk-config-row--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.kiosk-config-row--check input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.kiosk-config-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-deep);
}

.kiosk-config-input {
  width: 100%;
  max-width: 160px;
  padding: 12px 14px;
  font-size: 18px;
  border-radius: 10px;
  border: 1px solid rgba(27, 48, 34, 0.22);
  box-sizing: border-box;
}

.kiosk-config-input--wide {
  max-width: none;
}

.kiosk-config-step.hidden {
  display: none !important;
}

.kiosk-config-input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.kiosk-config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.kiosk-config-actions .touch-btn {
  flex: 1 1 auto;
  min-width: min(100%, 140px);
}

/* --- Skeleton carga inicio --- */
.cell-card--skeleton {
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}

.cell-image-wrap--skeleton {
  min-height: clamp(100px, 28vw, 160px);
  background: linear-gradient(90deg, var(--surface-mid) 0%, var(--surface-high) 50%, var(--surface-mid) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.1s ease-in-out infinite;
}

.cell-meta--skeleton {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 10px 12px;
}

.skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--surface-mid) 0%, #e8e5e0 50%, var(--surface-mid) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.1s ease-in-out infinite;
  pointer-events: none;
}

.skeleton-line--title {
  width: 72%;
  height: 14px;
}

.skeleton-line--sub {
  width: 48%;
  height: 10px;
  opacity: 0.85;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cell-image-wrap--skeleton,
  .skeleton-line {
    animation: none;
    background: var(--surface-mid);
  }
}

/* --- Vista transiciones (API del navegador) --- */
@supports (view-transition-name: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: var(--motion-duration);
    animation-timing-function: var(--motion-ease);
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

/* --- Móvil: layout fluido, safe areas, scroll en main --- */
@media (max-width: 719px) {
  html {
    height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
  }

  html,
  body {
    overflow: hidden;
    width: 100%;
    overscroll-behavior: none;
  }

  body {
    height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
  }

  .app-shell {
    height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    grid-template-rows: auto 1fr;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .topbar {
    min-height: 56px;
    padding-top: max(8px, env(safe-area-inset-top, 0px));
    padding-bottom: 8px;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .topbar-back__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .topbar-back {
    padding: 8px !important;
    min-width: 44px !important;
    justify-content: center;
  }

  .brand {
    font-size: clamp(18px, 5vw, 24px);
  }

  .view {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    overscroll-behavior-y: contain;
  }

  .screen {
    height: auto;
    min-height: 100%;
    overflow: visible;
  }

  .app-shell.app-shell--developer .screen {
    min-height: 100%;
  }

  .grid-screen {
    grid-template-rows: auto auto;
    min-height: 0;
    padding-top: 8px;
  }

  .cell-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    /* Filas según contenido: la fila de foto lleva min alto fijo para no aplastar la imagen */
    grid-auto-rows: auto;
    gap: 10px;
    padding: 0 14px 10px;
    min-height: 0;
  }

  .cell-card {
    grid-template-rows: minmax(150px, min(56vw, 220px)) auto;
  }

  .cell-image-wrap {
    min-height: 150px;
  }

  .cell-image-wrap--skeleton {
    min-height: 150px;
  }

  .gallery-footer {
    flex-shrink: 0;
    min-height: 52px;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }

  .gallery-footer p {
    font-size: 11px;
    line-height: 1.4;
  }

  .split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: min(100%, calc(100dvh - 64px));
  }

  .split--detail {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .split--detail .panel--gallery {
    max-height: none;
    min-height: 0;
    padding: 12px 14px 10px;
    gap: 10px;
  }

  .split--detail .hero-frame {
    flex: 0 0 auto;
    max-height: 48vh;
    min-height: 220px;
    aspect-ratio: 4 / 5;
    max-width: 100%;
  }

  .split--detail .thumb-strip {
    height: clamp(56px, 14vw, 76px);
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-snap-type: x proximity;
    padding-bottom: 2px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .split--detail .thumb {
    flex: 0 0 22%;
    min-width: 56px;
    scroll-snap-align: start;
  }

  .panel.right.panel--detail-copy {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    padding: 16px 18px  max(20px, env(safe-area-inset-bottom, 0px));
    gap: 10px;
    min-height: 0;
  }

  .detail-title--display {
    font-size: clamp(22px, 6vw, 28px);
  }

  .detail-description {
    font-size: 14px;
    line-height: 1.45;
  }

  .location-float--confirm {
    right: 8px;
    bottom: 8px;
    padding: 6px 12px;
    font-size: 10px;
  }

  .split--detail .hero-image-wrap .location-float--confirm {
    top: auto;
    bottom: 8px;
  }

  /* Pago y espera en columna */
  .payment-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .payment-summary-panel {
    order: 0;
    padding: 14px 16px;
  }

  .payment-summary-panel .payment-product-title {
    font-size: clamp(17px, 4.6vw, 24px);
    line-height: 1.2;
    text-align: left;
  }

  .payment-summary-panel .payment-product-sub {
    margin-top: 6px;
    font-size: 12px;
    text-align: left;
  }

  .panel.right.panel--payment-methods {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    padding: 16px 16px max(16px, env(safe-area-inset-bottom, 0px));
  }

  .payment-option {
    padding: 18px 14px;
    min-height: 52px;
  }

  .wait-split .panel--wait-terminal {
    width: 100%;
    max-width: 100%;
  }

  .wait-split {
    padding: 0 12px  max(12px, env(safe-area-inset-bottom, 0px));
  }

  .confirm-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: min(100%, calc(100dvh - 64px));
  }

  .panel.right.panel--confirm-content {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    overflow-y: visible;
    padding: 16px 16px max(16px, env(safe-area-inset-bottom, 0px));
  }

  .wait-actions {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 16px;
    max-width: 100%;
    width: 100%;
    padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
  }

  .toast {
    bottom: max(88px, calc(env(safe-area-inset-bottom, 0px) + 72px));
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;
    text-align: center;
  }

}
