/* Customer experience. Loaded after the legacy stylesheet; preserves admin layouts. */
:root {
  --store-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --store-radius: 18px;
  --store-border: rgba(255, 255, 255, .12);
  --store-soft: rgba(255, 255, 255, .045);
  --store-nav-height: 76px;
  --store-cart-cta-height: 68px;
  --on-primary: #211507;
}

html { scroll-padding-bottom: calc(var(--store-nav-height) + env(safe-area-inset-bottom, 0px) + 20px); }
html.has-cart-cta { scroll-padding-bottom: calc(var(--store-nav-height) + var(--store-cart-cta-height) + env(safe-area-inset-bottom, 0px) + 20px); }
body { font-family: var(--store-font); -webkit-text-size-adjust: 100%; }
button, input, select, textarea { font-family: inherit; }
button, a, [role="button"] { touch-action: manipulation; }
:where(button, a, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}
body:not(.admin-active) { line-height: 1.55; }
body:not(.admin-active) #app {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding: 24px 24px calc(var(--store-nav-height) + env(safe-area-inset-bottom, 0px) + 28px);
}
body.has-cart-cta:not(.admin-active) #app {
  padding-bottom: calc(var(--store-nav-height) + var(--store-cart-cta-height) + env(safe-area-inset-bottom, 0px) + 28px);
}
body:not(.admin-active) :where(.btn) {
  min-height: 46px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  padding: 12px 18px;
  transition: background-color .16s ease, box-shadow .16s ease;
}
body:not(.admin-active) :where(.btn-primary) { color: var(--on-primary); }
body:not(.admin-active) :where(.btn-success) { color: #072b18; }
body:not(.admin-active) :where(button:disabled, .btn:disabled) {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
body:not(.admin-active) :where(.form-group input, .form-group select, .form-group textarea, .checkout-details input, .checkout-details select) {
  font-size: 16px;
  line-height: 1.5;
  border-radius: 12px;
}
body:not(.admin-active) :where(.form-group label) { font-size: 14px; line-height: 1.5; }
body:not(.admin-active) :where(.login-container, .perfil-container, .pedido-card, .checkout-section) {
  border-radius: var(--store-radius);
}
body:not(.admin-active) .login-container { width: min(100%, 460px); padding: clamp(22px, 5vw, 40px); }
body:not(.admin-active) .login-container h1 { font-size: clamp(26px, 6vw, 34px); line-height: 1.2; }
body:not(.admin-active) .login-container .subtitle { line-height: 1.6; }
body:not(.admin-active) .login-page { min-height: calc(100svh - 150px); padding: 20px 0; }
body:not(.admin-active) .login-card { border-radius: 20px; box-shadow: 0 16px 50px #0002; }
body:not(.admin-active) .login-form .form-group input { font-size: 16px; }
body:not(.admin-active) .login-form .form-group input::placeholder { color: var(--lighter); opacity: 1; }
body:not(.admin-active) .login-form .btn-login { color: #072b18; min-height: 48px; }
body:not(.admin-active) .perfil-card { padding: 20px; border-radius: var(--store-radius); border-color: var(--store-border); }
body:not(.admin-active) .perfil-card h3 { font-size: 20px; line-height: 1.35; margin-bottom: 12px; letter-spacing: -.02em; }
body:not(.admin-active) .perfil-card p { overflow-wrap: anywhere; }
body:not(.admin-active) .perfil-card .btn:not(.btn-primary):not(.btn-danger):not(.btn-success) { background: var(--store-soft); color: var(--white); border: 1px solid var(--store-border); }
body:not(.admin-active) .checkout-page :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) { font-size: 16px !important; }
body:not(.admin-active) .checkout-page textarea::placeholder { color: var(--lighter); opacity: 1; }
/* These actions retain their existing green backgrounds and payment handlers. */
body:not(.admin-active) :is(#btnStep1Next, #btnStep2Next, #btnFinalizar, #btnProceed),
body:not(.admin-active) .cardapio-btn-order { color: #fff !important; }
body:not(.admin-active) .aq-modal-content { font-size: 15px; line-height: 1.55; }
body:not(.admin-active) :where(.aq-modal-close, .aq-modal-back) { min-width: 44px; min-height: 44px; }

/* Navigation stays attached to the viewport, independently of #app animations.
   Only the page scrolls; no scroll-direction listener or viewport-height math. */
.aq-bottom-nav-portal {
  position: fixed;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  z-index: 9900;
  transform: none;
  contain: none;
}
.aq-cart-cta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 12px;
  width: min(540px, calc(100% - 24px));
  min-height: 60px;
  margin: 0 auto 6px;
  padding: 7px 14px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(110deg, #ff444b, #e72934);
  box-shadow: 0 8px 26px #0005;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  text-align: left;
}
.aq-cart-cta[hidden] { display: none; }
.aq-cart-cta-icon { position: relative; font-size: 24px; line-height: 1; }
.aq-cart-cta-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 4px;
  border-radius: 999px;
  background: #18191b;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.aq-cart-cta-copy { display: flex; min-width: 0; flex-direction: column; padding-left: 12px; border-left: 1px solid #ffffff66; line-height: 1.2; }
.aq-cart-cta-copy strong { font-size: 16px; }
.aq-cart-cta-copy small { margin-top: 2px; font-size: 12px; }
.aq-cart-cta-price { padding-left: 12px; border-left: 1px solid #ffffff66; font-size: 16px; font-weight: 800; white-space: nowrap; }
.aq-cart-cta-arrow { font-size: 17px; }
.aq-bottom-nav-portal > .bottom-nav {
  position: static;
  min-height: var(--store-nav-height);
  margin: 0;
  padding: 8px max(8px, env(safe-area-inset-right, 0px)) max(8px, env(safe-area-inset-bottom, 0px)) max(8px, env(safe-area-inset-left, 0px));
  gap: 4px;
  border-top: 1px solid var(--store-border);
  background: var(--bg-card);
  box-shadow: 0 -6px 24px #0003;
  opacity: 1;
}
.bottom-nav .bottom-nav-btn {
  min-height: 56px;
  max-width: 180px;
  justify-content: center;
  padding: 7px 4px;
  gap: 5px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--lighter);
  font: 650 12px/1.25 var(--store-font);
}
.bottom-nav .bottom-nav-btn i { font-size: 20px; }
.bottom-nav .bottom-nav-btn.active { background: var(--primary-glow-strong); }
.bottom-nav .bn-label { max-width: 100%; overflow-wrap: anywhere; }

/* Burger photography, short copy and one clear route into the menu. */
.header.header-store.store-hero {
  min-height: 370px;
  margin: 0 0 18px;
  border-radius: 24px;
  box-shadow: none;
  border: 1px solid var(--store-border);
}
.store-hero-content { width: 58%; max-width: 650px; padding: 30px 32px; }
.header.header-store.store-hero.has-store-banner::before { inset: 0; background-position: center; }
.header.header-store.store-hero::after { background: linear-gradient(90deg, #090a0bc9 0%, #090a0b99 36%, #090a0b40 64%, #090a0b12 100%); }
.header.header-store.store-hero .store-top { justify-content: flex-start; margin-bottom: 14px !important; }
.header.header-store.store-hero .store-logo-large { width: auto; max-width: 180px; max-height: 64px !important; }
.header.header-store.store-hero .store-greeting-text { font-size: 15px; line-height: 1.5; color: #e1d9cc; }
.store-headline { margin: 10px 0 12px; color: #fff7ed; font-size: clamp(32px, 4.6vw, 54px); font-weight: 850; line-height: 1.06; letter-spacing: -.045em; text-wrap: balance; }
.store-hero-description { max-width: 410px; font-size: 15px; line-height: 1.6; color: #e1d9cc; margin: 0 0 18px; }
.store-order-cta { display: inline-flex; width: fit-content; max-width: 100%; align-items: center; justify-content: center; gap: 16px; box-shadow: none; }
.header.header-store.store-hero .store-meta { margin-top: 18px; gap: 10px; }
.store-actions-panel { background: var(--bg-card); border-color: var(--store-border); box-shadow: none; border-radius: var(--store-radius); padding: 16px; }
.store-actions-panel .store-meta-line3 { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); }
.store-action-item { color: var(--lighter); line-height: 1.4; font-size: 12px; }
.store-action-item span { white-space: normal; overflow: visible; }
.store-actions-panel .store-action-btn.store-btn.store-btn-icon { min-height: 44px !important; border-radius: 12px !important; box-shadow: none; }
.store-menu-heading { margin: 30px 0 18px; display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.store-eyebrow { color: var(--primary); font-size: 11px; letter-spacing: .12em; font-weight: 800; }
.store-menu-heading h2 { font-size: clamp(25px, 3vw, 32px); letter-spacing: -.035em; line-height: 1.2; margin: 6px 0 0; }
.store-menu-heading p { color: var(--lighter); font-size: 14px; margin: 0; }
.cardapio-view-control { align-items: center; flex-wrap: nowrap; gap: 10px; margin-bottom: 18px; scroll-margin-top: 18px; }
.cardapio-search { max-width: none; flex: 1 1 420px; position: relative; }
.cardapio-view-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.cardapio-search-input { min-height: 48px; padding: 12px 42px 12px 14px; font-size: 16px; background: var(--bg-card); border-color: var(--store-border); border-radius: 12px; }
.cardapio-search-icon { position: absolute; right: 12px; margin: 0; color: var(--lighter); }
.cardapio-search-input::placeholder { opacity: 1; }
.cardapio-view-button { background: var(--bg-card); border-color: var(--store-border); }
.cardapio-view-button i { color: var(--primary); }
.categorias.show-nav { top: max(8px, env(safe-area-inset-top, 0px)); background: var(--bg-card); border-color: var(--store-border); box-shadow: 0 4px 16px #0002; }
.category-select { min-height: 44px; font-size: 16px; }
.category-select option { color: var(--white); background: var(--bg-card); }
.category-header { min-height: 64px; }
.category-title { font-size: clamp(19px, 2vw, 23px); line-height: 1.3; letter-spacing: -.025em; }
.cardapio-highlight-card { border-radius: var(--store-radius); border-color: var(--store-border); box-shadow: none; }
@media (min-width: 701px) {
  .cardapio-highlight-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; column-gap: 24px; padding: 18px; }
  .cardapio-highlight-card .cardapio-highlight-title { grid-column: 1; }
  .cardapio-highlight-card .cardapio-highlight-main { grid-column: 1; margin-bottom: 0; }
  .cardapio-highlight-card .btn { grid-column: 2; grid-row: 1 / 3; margin: 0; width: auto; }
  .bottom-nav { justify-content: center; }
}

/* Keep both existing product views and the complete options modal. */
body:not(.admin-active) .produto-card { border: 1px solid var(--store-border); box-shadow: none; border-radius: var(--store-radius); transition: border-color .16s ease, background-color .16s ease; }
body:not(.admin-active) .produto-info { min-width: 0; display: flex; flex-direction: column; }
body:not(.admin-active) .produto-info h3 { font-size: 18px; line-height: 1.3; letter-spacing: -.02em; overflow-wrap: break-word; }
body:not(.admin-active) .produto-info .descricao { font-size: 14px; line-height: 1.55; color: var(--lighter); margin: 6px 0 12px; -webkit-line-clamp: 2; line-clamp: 2; }
body:not(.admin-active) .produto-info .preco { display: block; color: var(--success); font-size: 20px; font-weight: 800; line-height: 1.3; margin: 0; font-variant-numeric: tabular-nums; }
body:not(.admin-active) .preco-container { margin-top: auto; }
.produto-preco-primeiro-pedido { display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.produto-preco-primeiro-pedido .preco { flex-shrink: 0; }
.produto-preco-primeiro-pedido .primeiro-pedido-label { color: #22c55e; font-size: 10px; font-weight: 700; }
.produto-choose { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 44px; margin-top: 14px; padding: 10px 12px; border-radius: 10px; background: var(--primary-glow-strong); color: var(--primary); font-size: 14px; font-weight: 750; }
#produtos[data-view-mode="grid"] .category-products { gap: 16px; }
body:not(.admin-active) .category-products { margin-left: 0; }
#produtos[data-view-mode="grid"] .produto-card,
#produtos[data-view-mode="horizontal"] .produto-card { padding: 12px; gap: 14px; }
#produtos[data-view-mode="grid"] .produto-img,
#produtos[data-view-mode="horizontal"] .produto-img { height: auto; aspect-ratio: 4 / 3; border-radius: 12px; object-fit: cover; }
.produto-badge-mais-pedido { background: #ffcd70; color: #372409; border-radius: 5px; letter-spacing: .025em; }

body.theme-light { --store-border: rgba(35, 28, 17, .16); --store-soft: rgba(35, 28, 17, .04); }
body.theme-light .store-eyebrow,
body.theme-light .produto-choose { color: #7a4800; }
body.theme-light .bottom-nav .bottom-nav-btn.active:not(.has-items) :where(i, .bn-label) { color: #784800 !important; }
body.theme-light .store-actions-panel .store-action-btn.store-btn.store-btn-icon { background: var(--store-soft) !important; border-color: var(--store-border) !important; }

/* O conteúdo é duplicado no HTML. Somar metade do gap evita o salto entre ciclos. */
.marcas-carousel-track {
  --marcas-carousel-gap: 20px;
  gap: var(--marcas-carousel-gap);
  animation: marcasScrollContinuo 30s linear infinite;
  animation-play-state: running;
  will-change: transform;
}
.marcas-carousel-track:hover { animation-play-state: running; }
@keyframes marcasScrollContinuo {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - (var(--marcas-carousel-gap) / 2)), 0, 0); }
}

@media (hover: hover) {
  .bottom-nav .bottom-nav-btn:hover { background: var(--store-soft); }
  .aq-cart-cta:hover { filter: brightness(1.06); }
  body:not(.admin-active) .produto-card:hover { border-color: var(--primary); transform: none; box-shadow: none; }
  body:not(.admin-active) .produto-card:hover .produto-img { transform: none; }
}
@media (max-width: 700px) {
  body:not(.admin-active) #app { padding: 12px 12px calc(var(--store-nav-height) + env(safe-area-inset-bottom, 0px) + 24px); }
  .header.header-store.store-hero { min-height: 250px; margin-bottom: 12px; border-radius: 20px; }
  .store-hero-content { width: 72%; padding: 18px; }
  .header.header-store.store-hero.has-store-banner::before { inset: 0; }
  .header.header-store.store-hero::after { background: linear-gradient(90deg, #090a0bb3, #090a0b80 48%, #090a0b26); }
  .header.header-store.store-hero .store-logo-large { max-width: 140px; max-height: 50px !important; }
  .store-headline { font-size: clamp(32px, 7.5vw, 46px); }
  .store-hero-description { font-size: 14px; }
  .store-menu-heading { display: block; margin-top: 24px; }
  .store-menu-heading p { margin-top: 8px; }
  .cardapio-view-control { align-items: center; gap: 8px; margin-bottom: 10px; }
  .cardapio-search { flex: 1 1 auto; min-width: 0; }
  .cardapio-search-input::placeholder { font-size: 14px; }
  .cardapio-view-actions { display: flex; width: auto; flex: 0 0 auto; gap: 6px; }
  .cardapio-view-actions .cardapio-view-button { display: flex; flex: 0 0 44px; width: 44px; min-width: 44px; padding: 0; justify-content: center; }
  .cardapio-view-actions .cardapio-view-button span { display: none; }
  .cardapio-highlights { margin-bottom: 10px; }
  .cardapio-highlight-card { padding: 8px 10px; gap: 4px; }
  .cardapio-highlight-title { font-size: 12px; line-height: 1.3; }
  .cardapio-highlight-main { font-size: 13px; line-height: 1.3; }
  body:not(.admin-active) .cardapio-highlight-card .btn { min-height: 44px; padding: 8px 10px; font-size: 13px; }
  .store-actions-panel { padding: 12px 8px; }
  .store-action-item { font-size: 11px; }
  #produtos[data-view-mode="grid"] .category-products { gap: 10px; }
  #produtos[data-view-mode="grid"] .produto-card { padding: 10px; gap: 10px; }
  #produtos[data-view-mode="grid"] .produto-info h3 { font-size: 16px; }
  .produto-choose { font-size: 13px; padding: 10px; }
  .bottom-nav .bottom-nav-btn { font-size: 11px; }
}
@media (max-width: 520px) {
  .header.header-store.store-hero { min-height: 230px; }
  .store-hero-content { width: 68%; padding: 16px 14px; }
  .header.header-store.store-hero .store-logo-large { max-width: 124px; max-height: 44px !important; }
  .store-hero-description { margin-bottom: 10px; }
  .store-order-cta { min-height: 42px; padding: 9px 13px; }
}
@media (max-width: 359px) {
  .aq-cart-cta { grid-template-columns: 30px minmax(0, 1fr) auto 14px; gap: 8px; padding-inline: 10px; }
  .aq-cart-cta-copy { padding-left: 8px; }
  .aq-cart-cta-copy strong, .aq-cart-cta-price { font-size: 14px; }
  .aq-cart-cta-price { padding-left: 8px; }
  .aq-cart-cta-arrow { font-size: 14px; }
  #produtos[data-view-mode="grid"] .category-products,
  .cardapio-search-suggestions-grid { grid-template-columns: minmax(0, 1fr); }
  .store-hero-content { width: 94%; }
  .bottom-nav .bottom-nav-btn { font-size: 10px; }
}
/* Checkout: compact panels; the scroll container reserves the measured footer. */
body .checkout-page { padding-bottom: var(--checkout-footer-space, 150px) !important; scroll-padding-bottom: var(--checkout-footer-space, 150px); }
body .checkout-page .step-panel.active-step { padding-bottom: 0 !important; }
body .checkout-page .checkout-card.card { padding-bottom: 12px !important; }
body .checkout-page .step-panel > :last-child { margin-bottom: 0; }
body .checkout-page #totalFinal { color: var(--success) !important; font-size: 24px !important; font-weight: 800; }
body .checkout-page #totalFinal .total-value { color: inherit; }
body .checkout-page #mpOnlinePaymentSection { margin-top: 8px; }
body .checkout-page .checkout-pickup-map { height: 126px; }
body .checkout-page .checkout-address-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
body .checkout-page .checkout-address-action { width: 44px; height: 44px; min-width: 44px; min-height: 44px; padding: 10px; }
body .checkout-page #btnDividirPagamento { min-height: 40px; padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--lighter); background: var(--modal-soft); border: 1px solid var(--modal-border); box-shadow: none; }
body .checkout-page #btnDividirPagamento[hidden] { display: none !important; }
body .checkout-page #checkoutCoupon summary { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 12px; cursor: pointer; list-style: none; color: var(--lighter); font-size: 14px; font-weight: 600; }
body .checkout-page #checkoutCoupon summary::-webkit-details-marker { display: none; }
body .checkout-page #checkoutCoupon summary i { font-size: 12px; transition: transform .18s ease; }
body .checkout-page #checkoutCoupon[open] summary i { transform: rotate(180deg); }
body .checkout-page .checkout-coupon-content { padding-top: 6px; }
body .checkout-page #checkoutCoupon[open] .checkout-coupon-content { animation: checkoutCouponReveal .18s ease-out; }
body .checkout-page .cupom-row #btnCupom { min-width: 84px !important; }
/* Pagamento: escolha, opções secundárias e valor final bem separados. */
body .checkout-page.step-3 .checkout-card.card { background: var(--modal-surface); }
body .checkout-page .checkout-payment-cash-grid { grid-template-columns: 1fr; gap: 16px; }
body .checkout-page .checkout-payment-block > label { display: block; margin-bottom: 8px; font-size: 15px; color: var(--white); }
body .checkout-page #selectPagamento { height: 54px !important; font-size: 16px !important; }
body .checkout-page #trocoWrapper { padding: 16px; border-radius: 12px; background: var(--modal-soft); }
body .checkout-page #cashChangeLabel { display: block; margin-bottom: 10px; font-size: 15px; color: var(--white); }
body .checkout-page .cash-change-option { min-height: 44px; font-size: 14px; }
body .checkout-page .checkout-optional-title { display: flex; align-items: center; justify-content: space-between; margin: 24px 0 8px; padding-top: 20px; border-top: 1px solid var(--modal-sep); font-size: 16px; }
.checkout-optional-title span { color: var(--lighter); font-size: 12px; font-weight: 400; }
body .checkout-page .checkout-invoice-option { margin: 0; }
body .checkout-page .checkout-invoice-option > label { display: flex; align-items: center; gap: 10px; min-height: 48px; margin: 0; cursor: pointer; font-size: 15px; }
body .checkout-page #chkCpfNota { appearance: auto; -webkit-appearance: checkbox; width: 20px !important; height: 20px !important; accent-color: #22c55e; background: none; box-shadow: none; border: 0; border-radius: 4px; flex-shrink: 0; }
body .checkout-page #chkCpfNota::after { content: none; }
body .checkout-page .checkout-coupon-block { padding-top: 0 !important; margin-top: 0 !important; }
body .checkout-page .checkout-coupon-block::before { display: none; }
body .checkout-page .checkout-payment-products { margin-top: 20px; padding-top: 0; border-block: 1px solid var(--modal-sep); }
body .checkout-page .checkout-payment-products summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 60px; padding: 12px 0; list-style: none; cursor: pointer; font-size: 15px; font-weight: 650; }
.checkout-payment-products summary::-webkit-details-marker { display: none; }
.checkout-payment-products summary > span > i { margin-right: 6px; color: var(--success); }
.checkout-payment-products summary > i { font-size: 12px; }
.checkout-payment-products[open] summary > i { transform: rotate(180deg); }
body .checkout-page .checkout-totals-block { margin-top: 20px !important; padding: 18px !important; border: 1px solid var(--modal-sep); border-radius: 12px; background: var(--modal-soft); }
body .checkout-page .checkout-totals-block::before { display: none; }
body .checkout-page .checkout-totals-block h3 { font-size: 17px; margin: 0 0 14px; }
body .checkout-page .checkout-totals-block .subtotal { font-size: 15px; }
body .checkout-page #detalheTaxas { font-size: 15px !important; line-height: 1.7; }
body .checkout-page #totalFinal { font-size: 22px !important; }
body .aq-checkout-actions-portal .mobile-sticky-cta { grid-template-columns: 48px minmax(0, 1fr); gap: 10px; }
body .aq-checkout-actions-portal .btn-continuar,
body .aq-checkout-actions-portal .btn-finalize { max-width: none !important; grid-column: 2; box-shadow: none !important; }
body .aq-checkout-actions-portal .checkout-back-arrow { min-width: 48px !important; width: 48px !important; border-radius: 10px !important; color: var(--modal-text) !important; }
.checkout-footer-total { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; color: var(--modal-text); font-size: 14px; }
.checkout-footer-total strong { font-size: 22px; font-weight: 800; white-space: nowrap; }
body .aq-checkout-actions-portal #btnFinalizar { max-width: none !important; font-size: 16px !important; }
@keyframes checkoutCouponReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
body .mobile-sticky-cta { grid-template-columns: 42px minmax(0, 280px) 42px; }
body :is(#btnStep1Next, #btnStep2Next) { height: 50px !important; min-height: 50px !important; padding: 10px 12px !important; font-size: 15px !important; border-radius: 10px !important; margin: 0 !important; }
body #btnFinalizar { min-height: 64px !important; padding: 10px 12px !important; font-size: 14px !important; line-height: 1.4; white-space: normal; }
body #btnFinalizar .checkout-cta-main { display: block; }
body #btnFinalizar .checkout-cta-note { font-size: 12px; line-height: 1.4; opacity: 1; }
@media (max-width: 900px) {
  body .checkout-page { padding-bottom: var(--checkout-footer-space, calc(116px + env(safe-area-inset-bottom, 0px))) !important; scroll-padding-bottom: var(--checkout-footer-space, 116px); }
  body .checkout-page .checkout-steps .step { min-width: 0 !important; flex: 1; font-size: 12px !important; gap: 5px; }
  body .checkout-page .checkout-steps .step-left { gap: 5px; }
  body .checkout-page .checkout-steps { gap: 6px !important; overflow: visible; }
}
@media (max-width: 359px) {
  body .checkout-page .checkout-address-card { flex-wrap: wrap; }
  body .checkout-page .checkout-address-actions { margin-left: auto; }
  body .checkout-page .checkout-address-card > label { flex-basis: 100% !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  /* Mantém este conteúdo em movimento lento; é a própria função do componente. */
  .marcas-carousel-track {
    animation-duration: 60s !important;
    animation-iteration-count: infinite !important;
  }
}

/* Reserva espaÃ§o durante a carga para evitar saltos de layout em redes lentas. */
#categorias.loading { min-height: 56px; }
#produtos.loading { min-height: 420px; }

/* Produto: foto de ponta a ponta e títulos fixos no mesmo fluxo de rolagem. */
.aq-product-modal-box {
  --product-header-height: calc(64px + env(safe-area-inset-top, 0px));
  width: 100% !important;
  max-width: var(--product-modal-max-width, 520px) !important;
  height: min(900px, calc(100dvh - 40px));
}
.aq-product-modal-box .aq-product-modal-content {
  min-height: 0;
  max-height: none;
  padding: 0 !important;
}
.aq-product-modal-box .aq-product-modal-body {
  display: block;
  max-height: none !important;
  padding: 0 !important;
  scrollbar-width: none;
  scroll-padding-top: calc(var(--product-header-height) + 80px);
}
.aq-product-modal-body::-webkit-scrollbar { display: none; }
.aq-product-scroll-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--product-header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top, 0px) 64px 0;
  background: var(--modal-surface);
  border-bottom: 1px solid var(--modal-sep);
  color: var(--modal-text);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  visibility: hidden;
  pointer-events: none;
}
.aq-product-is-scrolled .aq-product-scroll-header { visibility: visible; }
.aq-product-scroll-header span { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.aq-product-modal-box :is(.aq-modal-back, .aq-modal-close) {
  top: calc(10px + env(safe-area-inset-top, 0px)) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  background: var(--modal-surface) !important;
  box-shadow: 0 2px 12px #0002;
}
.aq-product-modal-box .aq-modal-back { left: 12px !important; }
.aq-product-modal-box .aq-modal-close { right: 12px !important; }
.aq-product-modal-box :is(.aq-modal-back, .aq-modal-close):hover { background: var(--modal-soft) !important; }
.aq-product-modal .aq-product-hero { display: block; text-align: left; }
.aq-product-modal .aq-product-hero-img { width: 100%; }
.aq-product-modal .aq-product-hero .modal-main-img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 0;
}
.aq-product-hero-text {
  position: relative;
  padding: 24px 20px;
  background: var(--modal-surface);
  border-radius: 22px 22px 0 0;
}
.aq-product-hero-img + .aq-product-hero-text { margin-top: -20px; }
.aq-product-hero-text:first-child { padding-top: calc(var(--product-header-height) + 16px); }
.aq-product-modal .aq-product-title { font-size: 24px; line-height: 1.25; overflow-wrap: anywhere; }
.aq-product-modal .aq-product-desc { max-width: none; margin: 10px 0 0; font-size: 15px; line-height: 1.5; }
.aq-product-modal .aq-product-price { margin-top: 18px; font-size: 20px; }
.aq-product-modal .aq-product-addons { display: block; }
.aq-product-modal .aq-addons-title {
  position: sticky;
  top: var(--product-header-height);
  z-index: 5;
  margin: 0;
  padding: 16px 20px;
  min-height: 64px;
  background: color-mix(in srgb, var(--modal-surface) 94%, var(--modal-text));
  border-block: 1px solid var(--modal-sep);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 750;
}
.aq-product-modal-box #groupList { padding: 0 20px; }
.aq-product-modal .comp-option {
  min-height: 110px;
  padding: 16px 0 !important;
  margin: 0;
  border: 0 !important;
  border-bottom: 1px solid var(--modal-sep) !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.aq-product-modal .comp-option:hover { transform: none; box-shadow: none; }
.aq-product-modal .comp-option.is-selected {
  background: transparent;
  outline: none;
}
.comp-selection-status { display: none; align-items: center; gap: 5px; margin-top: 5px; color: var(--success); font-size: 12px; font-weight: 600; }
.comp-option.is-selected .comp-selection-status { display: inline-flex; }
.aq-product-modal .comp-option .comp-img { display: block; width: 76px; height: 76px; border-radius: 10px; }
.aq-product-modal .comp-option .comp-title { color: var(--modal-text); font-size: 18px; font-weight: 700; line-height: 1.35; }
.aq-product-modal .comp-option .comp-description { font-size: 14px !important; line-height: 1.4 !important; }
.aq-product-modal .comp-option .right { gap: 2px !important; }
.aq-product-modal .comp-option .right button { width: 44px; height: 44px; font-size: 24px; color: var(--success); }
.aq-product-modal .comp-option .comp-qty { min-width: 22px !important; }
.aq-product-modal .form-group { margin: 0; padding: 24px 20px; }
.aq-product-modal .form-group label { display: block; margin-bottom: 10px; font-size: 17px; }
.aq-product-modal textarea.obs-textarea { width: 100%; min-height: 90px; max-height: 180px; font-size: 16px; }
.aq-product-modal .aq-product-modal-footer {
  z-index: 15;
  margin: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--modal-surface);
}
.aq-product-modal-footer #qtyControl button { width: 38px; min-height: 48px; }
.aq-product-modal-footer #qtyControl #qtyDisplay { min-width: 28px; }
.aq-product-modal-footer .btn-proceed { min-height: 52px; }
/* Semantic customer colors: text and action backgrounds have separate roles. */
body:not(.admin-active) {
  --store-action: #15803d;
  --store-action-hover: #166534;
  --store-info: #5eead4;
  --store-link: #f5c270;
  --store-selected: #153524;
  --store-field-border: #67746e;
  --text-muted: var(--lighter);
  --texto: var(--white);
  --texto-sec: var(--lighter);
  --texto-label: var(--lighter);
}
body.theme-light:not(.admin-active) {
  color-scheme: light;
  --success: #166534;
  --danger: #b91c1c;
  --warning: #854d0e;
  --store-info: #0f766e;
  --store-link: #784800;
  --store-selected: #e8f5ed;
  --store-field-border: #7a858f;
  --gray-900: #12161c;
  --gray-800: #26313e;
  --gray-700: #334155;
  --gray-600: #475163;
  --gray-100: #f1f2f4;
  --texto: var(--white);
  --texto-sec: var(--lighter);
  --texto-label: var(--lighter);
  --modal-border: #d3d8df;
  --modal-sep: #e0e4e9;
}
body:not(.admin-active) .checkout-page {
  --checkout-green: var(--success);
  --checkout-surface: var(--modal-surface);
  --checkout-border: var(--modal-border);
  --checkout-muted: var(--lighter);
}
/* Solid surfaces in every step, including the footer rendered outside the page. */
body .checkout-page .checkout-card.card,
body .checkout-page .checkout-item,
body .checkout-page .checkout-address-card,
body .checkout-page .checkout-items-subtotal,
body .checkout-page .checkout-address-suggestions {
  background: var(--modal-surface);
  color: var(--modal-text);
  border-color: var(--modal-border);
  box-shadow: none;
}
body .checkout-page .checkout-steps .step {
  background: var(--modal-surface);
  border-color: var(--modal-border);
  color: var(--lighter);
  opacity: 1;
  box-shadow: none;
}
body .checkout-page .checkout-steps .step:is(.active, .done) {
  background: var(--store-selected) !important;
  border-color: var(--success) !important;
  color: var(--modal-text) !important;
  box-shadow: none !important;
}
body .checkout-page .checkout-steps .step:is(.active, .done) :is(.step-icon, .step-check) { color: var(--success); }
body .checkout-page :is(.checkout-item-title, .checkout-address-suggestion) { color: var(--modal-text); }
body .checkout-page :is(.checkout-addon, .checkout-items-subtotal small, .checkout-observation-counter, .cash-change-result, .checkout-address-suggestion small) { color: var(--lighter); }
body .checkout-page :is(.cash-change-result strong, .checkout-copy-pickup, .checkout-use-location) { color: var(--success); }
body .checkout-page .cash-change-error { color: var(--danger); }
body .checkout-page :is(.checkout-copy-pickup, .checkout-use-location) { background: var(--store-selected); border-color: var(--success); }
body .checkout-page .checkout-address-card.is-selected { background: var(--store-selected); border-color: var(--success); box-shadow: none; }
body .checkout-page .checkout-address-suggestion:is(:hover, :focus-visible) { background: var(--store-selected); }
body .checkout-page .checkout-actions .btn-edit-cart i,
body .checkout-page .checkout-address-action { color: var(--modal-text) !important; }
body .checkout-page .cash-change-option { background: var(--modal-surface); color: var(--modal-text); border-color: var(--store-field-border); }
body .checkout-page .cash-change-option.selected { background: var(--store-selected); color: var(--success); border-color: var(--success); }
body .checkout-page .opcao-tipo { border-color: var(--store-field-border); color: var(--modal-text); opacity: 1; }
body .checkout-page .opcao-tipo.ativo { background: var(--store-action); border-color: var(--store-action); color: #fff; box-shadow: none; }
body .checkout-page .opcao-tipo .opt-check { background: var(--store-action); }
body .checkout-page :is(.checkout-payment-products, .checkout-coupon-block, .checkout-totals-block)::before { border-color: var(--modal-sep); }
body .checkout-page .checkout-payment-products { border-color: var(--modal-sep); }
body .aq-checkout-actions-portal :is(#btnContinueShopping, #btnStep2Prev, #btnStep3Prev).checkout-back-arrow { color: var(--modal-text) !important; }
body .aq-checkout-actions-portal :is(#btnContinueShopping, #btnStep2Prev, #btnStep3Prev) i { color: inherit !important; }
body .checkout-page #btnNovoEndereco { background: var(--modal-surface) !important; color: var(--modal-text) !important; border-color: var(--store-field-border) !important; }
body .checkout-page #btnNovoEndereco i { color: inherit !important; }
body .checkout-page #selectPagamento option { background: var(--modal-surface); color: var(--modal-text); }
body .checkout-page .payment-select-chevron { color: var(--modal-text); }
body .aq-checkout-actions-portal .checkout-cta-note { opacity: 1; }
body:not(.admin-active) :is(#btnStep1Next, #btnStep2Next, #btnFinalizar, #btnProceed, #aqEntryContinueApp, #aqRecApply, #btnCopyPixCode, #btnTrackOrder),
body:not(.admin-active) :is(.btn-success, .btn-login, .aq-post-add-primary, .roleta-page-btn-resgatar, .roleta-page-btn, .roleta-btn-girar, .showcase-btn-pedir, .payment-change-confirm, .success-btn-primary),
body:not(.admin-active) .checkout-page .btn-primary {
  background: var(--store-action) !important;
  border-color: var(--store-action) !important;
  color: #fff !important;
  box-shadow: none;
}
body:not(.admin-active) :is(#btnStep1Next, #btnStep2Next, #btnFinalizar, #btnProceed, .btn-success, .btn-login, .aq-post-add-primary, .payment-change-confirm):hover:not(:disabled) { background: var(--store-action-hover) !important; }
body:not(.admin-active) .aq-post-add-secondary { color: var(--success); border-color: var(--success); }
body:not(.admin-active) .aq-post-add-icon,
body:not(.admin-active) .primeiro-pedido-label,
body:not(.admin-active) .aq-product-modal .comp-option .comp-qty { color: var(--success) !important; }
body:not(.admin-active) .aq-product-modal .comp-option .right button { color: var(--success); }
body.theme-light:not(.admin-active) :is(.form-group, .checkout-page, .aq-modal-content, .payment-change-modal, .login-form) :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea),
body.theme-light:not(.admin-active) .checkout-page #campoObservacoes,
body.theme-light:not(.admin-active) .checkout-page #selectPagamento {
  background: var(--modal-surface) !important;
  color: var(--modal-text) !important;
  border-color: var(--store-field-border) !important;
}
body.theme-light:not(.admin-active) :is(input, textarea)::placeholder { color: var(--lighter) !important; opacity: 1; }
body.theme-light:not(.admin-active) :is(input[type="checkbox"], input[type="radio"]) { accent-color: var(--store-action) !important; }
body.theme-light:not(.admin-active) :is(button, a, input, select, textarea, [tabindex]):focus-visible { outline: 3px solid var(--store-action); outline-offset: 3px; }
body.theme-light:not(.admin-active) :is(.cardapio-view-button i, .category-title i, .mp-new-card-btn:hover, .termos-sumario-link, .termos-secao a) { color: var(--store-link); }
body.theme-light:not(.admin-active) :is(.termos-atualizacao, .termos-sumario-titulo) { opacity: 1; }
body.theme-light:not(.admin-active) .login-logo { background: #18181b; border-radius: 12px; padding: 12px; }
body.theme-light:not(.admin-active) .perfil-level-name { color: var(--modal-text) !important; }
body.theme-light:not(.admin-active) #bn-perf:not(.active) :is(i, .bn-label) { color: var(--lighter) !important; }
body.theme-light:not(.admin-active) :is(.aq-rec-item, .aq-rifa-step, #aqRifaNao) { background: var(--modal-surface) !important; color: var(--modal-text) !important; border-color: var(--store-field-border) !important; }
body.theme-light:not(.admin-active) .aq-rec-item :is(.aq-rec-minus, .aq-rec-plus) { background: var(--modal-soft) !important; color: var(--modal-text) !important; border-color: var(--store-field-border) !important; }
/* Order history, payment dialogs and PIX also inherit the chosen theme. */
body.theme-light:not(.admin-active) .orders-page .pedido-card { background: var(--modal-surface); border-color: var(--modal-border); border-left-color: var(--status-color); box-shadow: none; --status-color: var(--warning); }
body.theme-light:not(.admin-active) .orders-page .pedido-card:is(.pedido-concluido, .pedido-preparando) { --status-color: var(--success); }
body.theme-light:not(.admin-active) .orders-page .pedido-card.pedido-cancelado { --status-color: var(--danger); }
body.theme-light:not(.admin-active) .orders-page .pedido-card.pedido-entrega { --status-color: var(--store-info); }
body.theme-light:not(.admin-active) .orders-page :is(.header h2, .pedido-title strong, .pedido-item, .pedido-summary-value) { color: var(--modal-text); }
body.theme-light:not(.admin-active) .orders-page :is(.pedido-date, .pedido-item-extras, .pedido-summary-label, .pedido-comp-price) { color: var(--lighter); }
body.theme-light:not(.admin-active) .orders-page :is(.pedido-header, .pedido-item-block, .pedido-summary) { border-color: var(--modal-sep); }
body.theme-light:not(.admin-active) .orders-page :is(.pedido-heading-icon, .pedido-comp-price, .pedido-btn) { background: var(--modal-soft); border-color: var(--modal-border); }
body.theme-light:not(.admin-active) .orders-page .pedido-btn { color: var(--modal-text); }
body.theme-light:not(.admin-active) .orders-page .btn-repetir { background: var(--store-action); color: #fff; }
body.theme-light:not(.admin-active) .orders-page .btn-mudar-pagamento { color: var(--success); border-color: var(--success); }
body.theme-light:not(.admin-active) .orders-page .btn-cancelar { color: var(--danger); border-color: var(--danger); }
body:not(.admin-active) .payment-change-modal { background: var(--modal-surface); color: var(--modal-text); border-color: var(--modal-border); }
body:not(.admin-active) .payment-change-head h2 { color: var(--modal-text); }
body:not(.admin-active) .payment-change-head p { color: var(--lighter); }
body:not(.admin-active) .payment-change-modal > label { color: var(--modal-text) !important; }
body:not(.admin-active) :is(.payment-change-close, .payment-change-cancel, .payment-change-modal select) { background: var(--modal-surface); color: var(--modal-text); border-color: var(--store-field-border); }
body.theme-light:not(.admin-active) .mp-saved-card.selected { background: var(--store-selected); border-color: var(--success); }
body.theme-light:not(.admin-active) .mp-status-badge.expired { color: var(--lighter); }
body:not(.admin-active) #btnChangePixPayment { color: var(--success) !important; border-color: var(--success) !important; }
body.theme-light:not(.admin-active) .pix-waiting-page { background: var(--bg-dark); }
body.theme-light:not(.admin-active) .roleta-title { background: none; color: var(--modal-text); -webkit-text-fill-color: currentColor; }
body.theme-light:not(.admin-active) :is(.roleta-premios-titulo, .roleta-aviso-regras i) { color: var(--warning); }
body.theme-light:not(.admin-active) .roleta-prize-badge { color: var(--success); }
body.theme-light:not(.admin-active) .roleta-btn-top-close { background: var(--modal-soft); color: var(--modal-text); border-color: var(--store-field-border); }
body.theme-light:not(.admin-active) .roleta-page-btn:is(:disabled, .bloqueado),
body.theme-light:not(.admin-active) :is(.roleta-page-btn-girar, .roleta-page-btn-resgatar):is(:disabled, .bloqueado) { background: var(--dark) !important; color: var(--lighter) !important; opacity: 1; }
/* Desktop has room for the complete product flow: use the viewport height. */
@media (min-width: 701px) {
  .aq-product-modal-wrapper { padding: 0 !important; }
  .aq-product-modal-wrapper .aq-product-modal-box {
    height: 100dvh !important;
    max-height: 100dvh !important;
  }
}
@media (max-width: 700px) {
  .aq-product-modal-wrapper .aq-product-modal-box {
    width: 100% !important;
    max-width: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding: 0 !important;
    border: 0;
  }
}
@media (max-width: 380px) {
  body:not(.admin-active) .produto-preco-primeiro-pedido .preco { font-size: 18px; }
  .produto-preco-primeiro-pedido { gap: 4px; }
  .aq-product-modal-box #groupList { padding-inline: 12px; }
  .aq-product-modal .comp-option { gap: 6px !important; }
  .aq-product-modal .comp-option > div:first-child { gap: 8px !important; }
  .aq-product-modal .comp-option .comp-img { width: 64px; height: 64px; }
  .aq-product-modal .comp-option .comp-title { font-size: 17px; }
}

/* Quantidade editável na sacola. */
body .checkout-page .checkout-item { grid-template-columns: 72px minmax(0, 1fr) auto !important; }
body .checkout-page .checkout-item-purchase-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
body .checkout-page .checkout-item-purchase-row .checkout-item-price { min-width: 0 !important; flex: 0 0 auto; text-align: right !important; white-space: nowrap; }
body .checkout-page .checkout-item-quantity { display: inline-flex; align-items: center; gap: 9px; margin: 0; color: var(--modal-text); font-size: 14px; font-weight: 800; }
body .checkout-page .checkout-item-quantity span { display: grid; place-items: center; height: 44px; min-width: 14px; line-height: 1; }
body .checkout-page .checkout-item-quantity button { display: grid; place-items: center; width: 34px; height: 44px; min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--modal-text); font-size: 20px; line-height: 1; cursor: pointer; }
body .checkout-page .checkout-item-quantity button:disabled { opacity: .4; cursor: default; }
body .checkout-page .checkout-item-quantity button:not(:disabled):hover { color: var(--success); }
body .checkout-page .checkout-item-quantity button:focus-visible { outline: 2px solid var(--success); border-radius: 6px; }
@media (max-width: 700px) {
  body .checkout-page .checkout-item { grid-template-columns: 58px minmax(0, 1fr) auto !important; }
  body .checkout-page .checkout-item .checkout-actions { grid-column: 3 !important; grid-row: 1 !important; }
}
@media (max-width: 380px) {
  body .checkout-page .checkout-item-purchase-row { flex-wrap: wrap; }
}

/* As opções continuam no select para a lógica do pedido, mas a escolha usa um painel próprio. */
body .checkout-page .checkout-native-payment-select { display: none !important; }
body .checkout-page .checkout-payment-trigger { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid var(--success); border-radius: 10px; background: var(--modal-surface); color: var(--modal-text); font: inherit; text-align: left; cursor: pointer; }
body .checkout-page .checkout-payment-trigger:disabled { opacity: .5; cursor: wait; }
body .checkout-page .checkout-payment-trigger .payment-select-chevron { position: static; transform: none; pointer-events: none; }
body .checkout-page #paymentPickerTrigger2 { margin-top: 5px; border-color: var(--store-field-border); }
body .checkout-page .checkout-payment-trigger:focus-visible, .checkout-payment-sheet button:focus-visible { outline: 2px solid var(--success); outline-offset: 2px; }
.checkout-payment-sheet { box-sizing: border-box; position: fixed; inset: 0; width: min(460px, calc(100% - 24px)); max-height: min(75dvh, 680px); margin: auto; padding: 18px; overflow-y: auto; border: 1px solid var(--modal-border); border-radius: 18px; background: var(--modal-surface); color: var(--modal-text); box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.checkout-payment-sheet::backdrop { background: rgba(0,0,0,.72); }
.checkout-payment-sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.checkout-payment-sheet-head h3 { margin: 0; color: var(--modal-text); font-size: 19px; }
.checkout-payment-sheet-head button { width: 36px; height: 36px; border: 0; border-radius: 9px; background: var(--modal-soft); color: var(--modal-text); cursor: pointer; }
.checkout-payment-sheet-options { display: grid; gap: 8px; }
.checkout-payment-option { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 58px; padding: 10px 12px; border: 1px solid var(--modal-border); border-radius: 11px; background: var(--modal-soft); color: var(--modal-text); font: inherit; text-align: left; cursor: pointer; }
.checkout-payment-option:is(:hover,.is-selected) { border-color: var(--success); background: var(--store-selected); }
.checkout-payment-option-icon { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 9px; background: var(--modal-surface); color: var(--success); }
.checkout-payment-option-text { display: grid; gap: 2px; flex: 1; min-width: 0; }
.checkout-payment-option-text strong { font-size: 14px; }
.checkout-payment-option-text small { color: var(--lighter); font-size: 12px; }
.checkout-payment-option-check { color: var(--success); }
@media (max-width: 700px) {
  .checkout-payment-sheet { inset: auto 0 0; width: 100%; max-height: min(78dvh, 680px); margin: 0; padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px)); border-radius: 20px 20px 0 0; }
  body .checkout-page :is(#btnStep1Next, #btnStep2Next) { font-size: clamp(12px, 3.5vw, 15px) !important; }
}
