:root {
    --primary: #e63946;
    --secondary: #b00020;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --btn-radius: 14px;
    --front-content-max-width: 1360px;
    --front-search-height: 40px;
    --front-search-button-size: 42px;
    --front-topbar-height: max(44px, calc(var(--front-search-button-size) + 8px));
    --front-menu-width: 340px;
    --front-menu-item-height: 44px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.035), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(148, 163, 184, 0.05), transparent 24%),
        var(--bg);
}

a {
    color: inherit;
}

.front-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: var(--front-topbar-height);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 0;
    backdrop-filter: blur(8px);
}

.front-topbar-inner {
    width: 100%;
    margin: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-icon {
    border: 1px solid #d1d5db;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.topbar-icon:hover {
    border-color: color-mix(in srgb, var(--primary) 38%, #ffffff);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.topbar-icon.search {
    width: var(--front-search-button-size);
    height: var(--front-search-button-size);
    border-radius: 10px;
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.topbar-icon.search:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.menu-bars-btn {
    width: 42px;
    height: 36px;
    border-radius: 10px;
    border-color: #d1d5db;
    background: #ffffff;
    display: inline-grid;
    place-items: center;
    padding: 0;
}

.menu-bars-btn i {
    font-size: 1.35rem;
    color: var(--primary);
    line-height: 1;
}

.menu-bars-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: none;
}

.menu-hero {
    margin-top: var(--front-topbar-height);
    position: relative;
}

.hero-banner {
    height: 210px;
    background-size: cover;
    background-position: center;
    border-bottom: 0;
}

.store-panel {
    width: min(1420px, 100%);
    margin: 0 auto;
    text-align: center;
    padding: 0 0.85rem 1rem;
    background: transparent;
}

.store-logo-wrap {
    margin-top: -42px;
    margin-bottom: 0.45rem;
}

.store-logo,
.store-logo-fallback {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    border: 3px solid #fff;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
    object-fit: cover;
}

.store-logo-fallback {
    display: inline-grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.store-title {
    margin: 0;
    font-size: 1.32rem;
    font-weight: 700;
}

.store-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.status-badge {
    margin-top: 0.45rem;
    display: inline-block;
    padding: 0.23rem 0.62rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
}

.status-badge.open {
    background: #dcfce7;
    color: #166534;
}

.status-badge.closed {
    background: #fee2e2;
    color: #991b1b;
}

.store-meta-line {
    margin-top: 0.58rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    color: #4b5563;
    font-size: 0.79rem;
}

.store-more-btn {
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 0.79rem;
    font-weight: 600;
}

.store-extra-panel {
    margin: 0.72rem auto 0;
    max-width: 860px;
    border: 1px solid color-mix(in srgb, var(--primary) 22%, #ffffff);
    background: #fff;
    border-radius: 12px;
    padding: 0.68rem 0.75rem;
    text-align: left;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.store-extra-row {
    font-size: 0.8rem;
    color: #4b5563;
}

.store-extra-row + .store-extra-row {
    margin-top: 0.35rem;
}

.store-extra-row strong {
    color: #111827;
}

.store-extra-row a {
    color: var(--primary);
}

.category-strip-wrap {
    position: sticky;
    top: var(--front-topbar-height);
    z-index: 45;
    padding: 0.48rem 0.65rem 0.18rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.toolbar-search {
    width: min(var(--front-content-max-width), 100%);
    max-width: min(var(--front-content-max-width), 100%);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.25s ease, opacity 0.22s ease, transform 0.22s ease, margin-bottom 0.22s ease;
}

.category-strip-wrap.search-open .toolbar-search {
    max-height: 88px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-bottom: 0.52rem;
}

.search-input {
    display: block;
    width: 100%;
    min-height: var(--front-search-height);
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    border-color: color-mix(in srgb, var(--primary) 64%, #ffffff);
    box-shadow: 0 0 0 0.18rem rgba(248, 113, 124, 0.2);
}

.category-scroll {
    width: min(var(--front-content-max-width), 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 0.08rem 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.category-scroll::-webkit-scrollbar {
    height: 0;
}

.chip {
    position: relative;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #374151;
    border-radius: 0;
    padding: 0.72rem 0;
    min-height: 44px;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.chip:hover {
    transform: none;
    border-color: transparent;
    color: var(--primary);
    box-shadow: none;
}

.chip.active {
    border-color: var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    box-shadow: none;
}

.chip.has-media {
    gap: 0.55rem;
}

.chip-media {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 0;
    flex: 0 0 30px;
    border: 0;
    background: transparent;
    padding: 0;
}

.menu-section-title {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.menu-section-title span {
    font-weight: 800;
    font-size: inherit;
    color: #111827;
    letter-spacing: inherit;
}

.menu-main {
    width: min(calc(1360px * var(--cardapio-layout-scale, 1)), calc(100% - 1.25rem));
    margin: 0 auto;
    padding: 0.92rem 0.72rem 5.8rem;
    background: #f5f7fb;
    border-radius: 16px;
}

.catalog-footer {
    width: min(calc(1360px * var(--cardapio-layout-scale, 1)), calc(100% - 1.25rem));
    margin: 0.55rem auto 5.4rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
}

.catalog-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.62rem 0.75rem;
}

.catalog-footer-item {
    color: #64748b;
    font-size: 0.78rem;
}

.catalog-footer-item strong {
    color: #0f172a;
}

a.catalog-footer-item {
    color: var(--primary);
    text-decoration: none;
}

a.catalog-footer-item:hover {
    text-decoration: underline;
}

.menu-section {
    padding-top: 0.85rem;
    margin-top: 0.15rem;
    border-top: 0;
}

.menu-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.64rem;
}

.menu-section-head.is-toggle {
    cursor: pointer;
}

.menu-section-head h2 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #111827;
}

.menu-section-head > span {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

.menu-section-head h2 span {
    color: #111827;
    font-size: inherit;
    font-weight: 800;
}

.menu-section-head .bi-chevron-up,
.menu-section-head .bi-chevron-down {
    display: inline-block;
    transition: transform 0.18s ease;
}

.menu-section.is-collapsed .menu-section-head .bi-chevron-up,
.menu-section.is-collapsed .menu-section-head .bi-chevron-down {
    transform: rotate(180deg);
}

.section-products {
    display: grid;
    grid-template-columns: repeat(var(--section-columns, var(--front-columns, 3)), minmax(0, 1fr));
    gap: calc(0.84rem * var(--cardapio-layout-scale, 1));
}

.menu-section.is-collapsed .section-products {
    display: none;
}

.product-card {
    --product-coupon-width: clamp(170px, 23vw, 220px);
    border: 1px solid #d5dee9;
    border-radius: 12px;
    background: #ffffff;
    display: grid;
    grid-template-columns: clamp(72px, calc(var(--product-image-width, 112px) * var(--cardapio-layout-scale, 1)), 260px) minmax(0, 1fr);
    gap: calc(0.72rem * var(--cardapio-layout-scale, 1));
    padding: calc(0.62rem * var(--cardapio-layout-scale, 1));
    align-items: start;
    position: relative;
    transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.product-card:hover {
    border-color: #c8d2df;
    transform: translateY(-2px);
}

body[data-product-shadow='1'] .product-card {
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

body[data-product-shadow='1'] .product-card:hover {
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.2);
}

body[data-product-shadow='0'] .product-card,
body[data-product-shadow='0'] .product-card:hover {
    box-shadow: none;
    transform: none;
}

.promo-section .product-card {
    border-color: #d5dee9;
    background: #ffffff;
}

.product-thumb-wrap {
    width: clamp(72px, calc(var(--product-image-width, 112px) * var(--cardapio-layout-scale, 1)), 260px);
    height: clamp(56px, calc(var(--product-image-height, 88px) * var(--cardapio-layout-scale, 1)), 260px);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #edf2f7;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body[data-store-open='0'] .product-thumb-wrap {
    background: #f3f4f6;
}

body[data-store-open='0'] .product-thumb {
    filter: grayscale(1) brightness(1.08) saturate(0.08);
    opacity: 0.72;
}

body[data-store-open='0'] .product-card {
    cursor: not-allowed;
}

body[data-store-open='0'] .product-card:hover {
    transform: none;
    border-color: #d5dee9;
}

body[data-store-open='0'] .btn-add-product {
    opacity: 0.55;
    pointer-events: none;
}

.product-tag {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    padding: 0.14rem 0.36rem;
    font-size: 0.58rem;
    font-weight: 700;
}

.product-tag.tag-default,
.product-tag.tag-oferta {
    background: var(--primary);
}

.product-tag.tag-combo {
    background: #0f766e;
}

.product-tag.tag-em-falta {
    background: #6b7280;
}

.product-tag.tag-mais-vendido {
    background: #f59e0b;
    color: #111827;
}

.product-sku {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    margin-top: 0.1rem;
    color: #64748b;
    font-size: 0.71rem;
    line-height: 1.2;
}

.product-sku i {
    font-size: 0.78rem;
    opacity: 0.88;
}

.product-body {
    min-width: 0;
}

.product-card.has-coupon-timer .product-body {
    position: relative;
}

.category-name {
    display: none;
}

.product-body h3 {
    margin: 0;
    font-size: var(--product-title-size, 1.02rem);
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.product-body p {
    margin: 0.42rem 0 0;
    color: #6b7280;
    font-size: var(--product-description-size, 0.8rem);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-footer {
    margin-top: 0.56rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.58rem;
}

.product-coupon-timer {
    margin-top: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    max-width: min(100%, var(--product-coupon-width));
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    border: 1px solid rgba(249, 115, 22, 0.28);
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 244, 236, 0.98) 100%);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.08);
}

@media (min-width: 576px) {
    .product-card.has-coupon-timer h3,
    .product-card.has-coupon-timer p,
    .product-card.has-coupon-timer .category-name,
    .product-card.has-coupon-timer .product-sku {
        padding-right: calc(var(--product-coupon-width) + 0.9rem);
    }

    .product-card.has-coupon-timer .product-coupon-timer {
        position: absolute;
        top: 0;
        right: 0;
        width: auto;
        max-width: min(100%, var(--product-coupon-width));
        margin-top: 0;
        z-index: 4;
        pointer-events: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .product-card {
        --product-coupon-width: clamp(150px, 35vw, 190px);
    }

    .product-coupon-timer-text {
        font-size: 0.7rem;
    }
}

.product-coupon-timer-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8a1f 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.product-coupon-timer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.product-coupon-timer-caption {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #c2410c;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.product-coupon-timer-text {
    min-width: 0;
    color: #ea580c;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-feature-settings: "tnum" 1;
    font-variant-numeric: tabular-nums;
}

.product-coupon-timer.is-static {
    border-color: color-mix(in srgb, var(--primary) 18%, #ff8a3d);
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 5%, #fffaf5) 0%, color-mix(in srgb, var(--primary) 8%, #fff4ec) 100%);
}

.product-coupon-timer.is-static .product-coupon-timer-icon {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 90%, #ff8a1f), color-mix(in srgb, var(--primary) 72%, #ff6a1a));
}

.product-coupon-timer.is-static .product-coupon-timer-caption {
    display: none;
}

.product-coupon-timer.is-static .product-coupon-timer-text {
    color: color-mix(in srgb, var(--primary) 82%, #ff7a1a);
}

.price-box small {
    display: block;
    color: #9ca3af;
    font-size: 0.68rem;
}

.price-box small.price-old {
    text-decoration: line-through;
}

.price-box small.price-label {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.price-box small.price-label i {
    font-size: 0.68rem;
    line-height: 1;
}

.price-box strong {
    color: #111827;
    font-size: 0.94rem;
    font-weight: 700;
}

.btn-add-product {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.94rem;
    line-height: 1;
}

.btn-add-product i {
    font-size: 1.18rem;
    line-height: 1;
}

.btn-add-product:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-add-product.is-disabled,
.btn-add-product:disabled {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

.products-empty {
    margin-top: 1.2rem;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
    text-align: center;
    color: #6b7280;
}

.products-empty i {
    font-size: 1.35rem;
    display: block;
    margin-bottom: 0.4rem;
}

.products-empty p {
    margin: 0;
}

.cart-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    padding: 0.74rem 1rem;
    box-shadow: none;
}

.cart-fab span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #fff;
    color: var(--secondary);
    margin-left: 0.45rem;
}

#cartCanvas.offcanvas {
    background: #ffffff;
    color: #111827;
    box-shadow: none !important;
    width: min(100vw, 470px);
}

#cartCanvas .offcanvas-header {
    border-color: #e5e7eb !important;
}

#cartCanvas .offcanvas-body {
    overflow-y: auto;
    overscroll-behavior: contain;
}

#cartCanvas .btn-close-white {
    filter: none;
}

#cartCanvas .form-control,
#cartCanvas .form-select,
#cartCanvas textarea {
    background: #fff;
    border-color: #d1d5db;
    color: #111827;
}

#cartCanvas .form-control::placeholder,
#cartCanvas textarea::placeholder {
    color: #9ca3af;
}

#cartCanvas .form-control:focus,
#cartCanvas .form-select:focus,
#cartCanvas textarea:focus {
    border-color: color-mix(in srgb, var(--primary) 64%, #ffffff);
    box-shadow: none;
}

#cartCanvas .summary-box,
#cartCanvas .checkout-step-card,
#cartCanvas .checkout-account-required,
#cartCanvas .checkout-review-grid > div,
#cartCanvas .checkout-account-grid > div,
#cartCanvas .cart-item {
    box-shadow: none !important;
}

.checkout-account-required {
    border: 1px solid color-mix(in srgb, var(--primary) 24%, #ffffff);
    border-radius: 14px;
    background: color-mix(in srgb, var(--primary) 8%, #ffffff);
    padding: 0.92rem;
    text-align: center;
}

.checkout-account-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    margin: 0 auto 0.45rem;
    border: 1px solid color-mix(in srgb, var(--primary) 38%, #ffffff);
    color: #b91c1c;
    background: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 1.2rem;
}

.checkout-account-required h6 {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 700;
    color: #111827;
}

.checkout-account-required p {
    margin: 0.45rem 0 0.75rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #475569;
}

.checkout-form {
    margin: 0;
}

.checkout-overview-block {
    display: grid;
    gap: 0.55rem;
}

.coupon-checkout-area {
    display: grid;
    gap: 0.32rem;
}

.checkout-overview-block.coupon-decision-only > #cartItems,
.checkout-overview-block.coupon-decision-only > #checkoutSummaryBox {
    display: none !important;
}

.checkout-overview-block.coupon-decision-only .coupon-checkout-area {
    margin: 0;
}

.checkout-overview-block.coupon-decision-only #couponDecisionBox {
    margin-top: 0;
}

.coupon-form-row {
    display: flex;
    gap: 0.72rem;
    align-items: stretch;
}

.coupon-input-wrap {
    position: relative;
    flex: 1 1 auto;
}

.coupon-input-icon {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.02rem;
    color: var(--primary);
    pointer-events: none;
    z-index: 2;
}

.coupon-code-input {
    padding-left: 2.7rem !important;
    min-height: 48px;
    border-radius: 16px;
}

#couponForm .btn {
    min-width: 118px;
    min-height: 48px;
    border-radius: 16px;
    font-weight: 700;
}

#couponFeedback {
    min-height: 1.1rem;
    font-size: 0.82rem;
}

.coupon-decision-box {
    margin-top: 0.25rem;
    padding: 1.05rem 0.95rem 0.95rem;
    border-radius: 22px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, #ffffff);
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 9%, #ffffff) 0%, #ffffff 100%);
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.coupon-decision-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 0.72rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 72%, #111827));
    box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 34%, transparent);
}

.coupon-decision-icon i {
    font-size: 1.8rem;
}

.coupon-decision-title {
    display: block;
    font-size: 0.96rem;
    font-weight: 800;
    color: #0f172a;
}

.coupon-decision-message {
    margin: 0.4rem 0 0;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 700;
    color: #334155;
}

.coupon-decision-actions {
    margin-top: 0.92rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}

.coupon-decision-actions .btn {
    min-height: 46px;
    border-radius: 14px;
    font-weight: 700;
}

.checkout-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.48rem;
}

.checkout-step-btn {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 12px;
    min-height: 58px;
    padding: 0.38rem 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.checkout-step-btn span {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    color: #64748b;
    background: #f8fafc;
    display: inline-grid;
    place-items: center;
    font-size: 0.74rem;
    font-weight: 700;
}

.checkout-step-btn.done,
.checkout-step-btn.active {
    border-color: color-mix(in srgb, var(--primary) 38%, #ffffff);
    background: color-mix(in srgb, var(--primary) 8%, #ffffff);
    color: var(--secondary);
}

.checkout-step-btn.done span,
.checkout-step-btn.active span {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.checkout-step-btn:focus,
.checkout-step-btn:focus-visible {
    outline: none;
    border-color: color-mix(in srgb, var(--primary) 45%, #ffffff);
    box-shadow: none;
}

#cartCanvas .checkout-step {
    display: none;
}

#cartCanvas .checkout-step.active {
    display: block;
}

#cartCanvas .checkout-step.row.active {
    display: flex;
}

.checkout-step-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    padding: 0.72rem;
}

.checkout-step-card h6 {
    margin: 0;
    font-size: 0.93rem;
    font-weight: 700;
}

.checkout-step-card p {
    margin: 0.32rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

.checkout-account-grid {
    margin-top: 0.58rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.checkout-account-grid > div {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.48rem 0.5rem;
    background: #f8fafc;
}

.checkout-account-grid small,
.checkout-review-grid small {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.08rem;
}

.checkout-account-grid strong,
.checkout-review-grid strong {
    font-size: 0.83rem;
    color: #111827;
    font-weight: 700;
}

.checkout-review-card h6 {
    margin-bottom: 0.52rem;
}

.checkout-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.checkout-review-grid > div {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    padding: 0.45rem 0.5rem;
}

.checkout-review-grid .checkout-review-address-block {
    grid-column: 1 / -1;
}

.checkout-receipt-card {
    border: 1px solid #d9c7a4;
    border-radius: 20px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff8ea 100%);
    color: #2b2112;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.checkout-receipt-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,248,234,0.65));
    border-bottom: 1px dashed rgba(148, 109, 39, 0.35);
}

.checkout-receipt-eyebrow {
    display: block;
    color: #8a6a2c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.checkout-receipt-title {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 700;
    color: #271b0d;
}

.checkout-receipt-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #b91c1c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.checkout-receipt-body {
    padding: 0.95rem 1rem 1rem;
}

.checkout-receipt-empty {
    color: #6b7280;
}

.checkout-receipt-line {
    padding: 0.78rem 0;
    border-bottom: 1px dashed rgba(148, 109, 39, 0.3);
}

.checkout-receipt-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-receipt-line-main {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: flex-start;
}

.checkout-receipt-line-main strong {
    color: #22170a;
    font-size: 0.92rem;
    font-weight: 800;
}

.checkout-receipt-line-main span {
    color: #111827;
    font-weight: 700;
    white-space: nowrap;
}

.checkout-receipt-line-complements {
    list-style: none;
    margin: 0.45rem 0 0;
    padding: 0;
}

.checkout-receipt-line-complements li,
.checkout-receipt-line-note {
    color: #6b4f1d;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.2rem;
}

.checkout-receipt-divider {
    height: 1px;
    margin: 1rem 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(148, 109, 39, 0.42) 0 12px,
        transparent 12px 20px
    );
}

.checkout-receipt-totals,
.checkout-receipt-meta-grid {
    display: grid;
    gap: 0.65rem;
}

.checkout-receipt-totals > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #4b5563;
    font-size: 0.88rem;
}

.checkout-receipt-totals > div strong {
    color: #111827;
    font-weight: 800;
}

.checkout-receipt-totals > div.is-total {
    margin-top: 0.2rem;
    padding-top: 0.7rem;
    border-top: 1px dashed rgba(148, 109, 39, 0.3);
    color: #1f2937;
    font-size: 0.94rem;
}

.checkout-receipt-totals > div.is-total strong {
    font-size: 1.02rem;
}

.checkout-receipt-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.9rem;
}

.checkout-receipt-meta-grid > div,
.checkout-receipt-meta-block {
    border: 1px dashed rgba(148, 109, 39, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.58);
    padding: 0.85rem 0.9rem;
}

.checkout-receipt-meta-grid small,
.checkout-receipt-meta-block small {
    display: block;
    margin-bottom: 0.32rem;
    color: #8a6a2c;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.checkout-receipt-meta-grid strong,
.checkout-receipt-meta-block strong {
    color: #22170a;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 600;
}

.checkout-receipt-meta {
    display: grid;
    gap: 0.9rem;
}

.checkout-online-wrap {
    margin-top: 0.72rem;
    width: 100%;
}

.checkout-delivery-mode-note {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    padding: 0.78rem 0.9rem;
    display: grid;
    gap: 0.2rem;
}

.checkout-delivery-mode-note strong {
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
}

.checkout-delivery-mode-note small {
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.45;
}

.checkout-order-type-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    width: 100%;
}

.checkout-order-type-btn {
    min-height: 46px;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--primary) 50%, #dbe4ee);
    background: #ffffff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.checkout-order-type-btn:hover,
.checkout-order-type-btn:focus-visible {
    border-color: color-mix(in srgb, var(--primary) 78%, #dbe4ee);
    background: color-mix(in srgb, var(--primary) 7%, #ffffff);
    color: var(--primary);
}

.btn-check:checked + .checkout-order-type-btn {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
}

.btn-check:focus-visible + .checkout-order-type-btn,
.btn-check:focus + .checkout-order-type-btn {
    box-shadow: 0 0 0 0.18rem color-mix(in srgb, var(--primary) 18%, transparent);
}

.checkout-local-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.checkout-local-card {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.68rem 0.72rem;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 0.5rem;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    min-height: 128px;
}

.checkout-local-card:hover,
.checkout-local-card:focus {
    border-color: color-mix(in srgb, var(--primary) 36%, #e2e8f0);
    background: color-mix(in srgb, var(--primary) 5%, #ffffff);
}

.checkout-local-card.is-active {
    border-color: color-mix(in srgb, var(--primary) 68%, #e2e8f0);
    background: color-mix(in srgb, var(--primary) 10%, #ffffff);
}

.checkout-local-card-info {
    cursor: default;
}

.checkout-local-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 8%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, #e2e8f0);
    overflow: hidden;
}

.checkout-local-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.checkout-local-copy {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    min-width: 0;
    align-items: center;
}

.checkout-local-copy strong {
    color: #111827;
    font-size: 0.84rem;
    font-weight: 700;
}

.checkout-local-copy small {
    color: #64748b;
    font-size: 0.74rem;
    line-height: 1.35;
}

.checkout-online-head {
    margin-bottom: 0.45rem;
}

.checkout-online-head small,
.checkout-online-hint {
    color: #64748b;
    font-size: 0.76rem;
}

.checkout-online-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
}

.checkout-distance-box {
    width: 100%;
    border: 1px dashed color-mix(in srgb, var(--primary) 30%, #cbd5e1);
    border-radius: 14px;
    background: color-mix(in srgb, var(--primary) 5%, #ffffff);
    padding: 0.8rem 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.checkout-distance-box strong {
    color: #0f172a;
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.16rem;
}

.checkout-distance-box small {
    color: #64748b;
    display: block;
    font-size: 0.76rem;
    line-height: 1.45;
}

.checkout-online-card {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.68rem 0.72rem;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: 0.72rem;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    min-height: 74px;
}

.checkout-online-card:hover,
.checkout-online-card:focus {
    border-color: color-mix(in srgb, var(--primary) 36%, #e2e8f0);
    background: color-mix(in srgb, var(--primary) 5%, #ffffff);
}

.checkout-online-card.is-active {
    border-color: color-mix(in srgb, var(--primary) 68%, #e2e8f0);
    background: color-mix(in srgb, var(--primary) 10%, #ffffff);
}

.checkout-online-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    flex: 0 0 44px;
}

.checkout-online-badge.is-mercado-pago {
    background: linear-gradient(135deg, #009ee3, #0077b6);
}

.checkout-online-badge.is-pagseguro {
    background: linear-gradient(135deg, #ffb000, #ff7a00);
}

.checkout-online-logo-wrap {
    width: 94px;
    height: 52px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 94px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    padding: 0.2rem 0.42rem;
}

.checkout-online-logo-wrap.is-pagseguro {
    background: #ffffff;
}

.checkout-online-logo-wrap.is-mercado-pago,
.checkout-online-logo-wrap.is-nupay {
    background: #ffffff;
}

.checkout-online-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.checkout-online-copy {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    min-width: 0;
    width: 100%;
}

.checkout-online-copy strong {
    color: #111827;
    font-size: 0.84rem;
    font-weight: 700;
}

.checkout-online-copy small {
    color: #64748b;
    font-size: 0.74rem;
    line-height: 1.35;
}

.checkout-online-hint {
    display: block;
    margin-top: 0.5rem;
}

.checkout-online-hint:empty {
    display: none;
}

.checkout-online-hint.is-danger {
    color: #dc2626;
}

.checkout-online-hint.is-success {
    color: #059669;
}

.checkout-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkout-nav > .btn {
    min-height: 44px;
    font-size: 0.86rem;
    font-weight: 600;
}

.checkout-nav > .btn.checkout-btn-full {
    grid-column: 1 / -1;
}

.checkout-success-modal {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.checkout-success-modal .modal-body {
    text-align: center;
    padding: 1rem;
}

.checkout-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin: 0 auto 0.55rem;
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #16a34a;
    font-size: 1.8rem;
    display: grid;
    place-items: center;
}

.checkout-success-modal h5 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
}

.checkout-success-modal p {
    margin: 0.45rem 0 0;
    color: #475569;
    font-size: 0.85rem;
}

.checkout-success-code {
    margin: 0.75rem auto 0;
    width: fit-content;
    border: 1px solid color-mix(in srgb, var(--primary) 24%, #ffffff);
    background: color-mix(in srgb, var(--primary) 8%, #ffffff);
    color: var(--secondary);
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.checkout-success-qr-wrap {
    margin-top: 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    padding: 0.72rem;
}

.checkout-success-qr-help {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    color: #475569;
}

.checkout-success-qr-box {
    margin: 0 auto;
    width: fit-content;
}

.checkout-success-qr-box img {
    width: min(190px, 58vw);
    aspect-ratio: 1 / 1;
    display: block;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 0.35rem;
    object-fit: cover;
}

#checkoutSuccessPanelBtn {
    margin-top: 0.55rem;
    width: 100%;
    min-height: 42px;
    font-weight: 600;
}

#checkoutSuccessPaymentBtn {
    width: 100%;
    min-height: 42px;
    font-weight: 600;
}

#checkoutSuccessWhatsappBtn {
    width: 100%;
    min-height: 42px;
    font-weight: 600;
}

.checkout-success-actions {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.46rem;
}

.checkout-success-actions .btn {
    min-height: 42px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .product-coupon-timer {
        margin-top: 0.64rem;
        width: 100%;
        max-width: 100%;
        padding: 0.34rem 0.62rem;
    }

    .product-coupon-timer-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .product-coupon-timer-text {
        font-size: 0.7rem;
        white-space: normal;
    }

    .coupon-form-row,
    .coupon-decision-actions {
        grid-template-columns: 1fr;
    }

    .coupon-form-row {
        flex-direction: column;
    }

    #couponForm .btn {
        width: 100%;
        min-width: 100%;
    }

    .checkout-local-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-local-card {
        min-height: 118px;
        padding: 0.62rem 0.5rem;
    }

    .checkout-local-copy strong {
        font-size: 0.8rem;
    }

    .checkout-local-copy small {
        font-size: 0.7rem;
    }

    .checkout-online-grid {
        grid-template-columns: 1fr;
    }

    .checkout-distance-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-distance-box .btn {
        width: 100%;
    }
}

.store-menu-canvas {
    width: min(86vw, var(--front-menu-width)) !important;
    background: #ffffff;
    color: #0f172a;
    border-right: 1px solid #e2e8f0;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.store-menu-canvas .offcanvas-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 0.8rem 0.95rem;
    background: #ffffff;
}

.store-menu-canvas .btn-close-white {
    filter: none;
}

.store-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.store-menu-brand img,
.store-menu-brand-fallback {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.store-menu-brand-fallback {
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
}

.store-menu-brand strong {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0f172a;
}

.store-menu-item {
    width: 100%;
    border: 0;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-height: var(--front-menu-item-height);
    padding: 0.85rem 0.95rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    font-weight: 600;
}

.store-menu-item i {
    font-size: 1.02rem;
    color: #475569;
}

.menu-item-icon-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 20px;
}

.store-menu-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.store-menu-item-coupon {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    column-gap: 0.72rem;
    row-gap: 0.2rem;
}

.store-menu-item-coupon > .menu-item-icon-image,
.store-menu-item-coupon > i {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
}

.store-menu-item-coupon > .store-menu-item-main {
    grid-column: 2;
    grid-row: 1;
    display: block;
    line-height: 1.15;
}

.store-menu-item-coupon > .store-menu-pill {
    grid-column: 2;
    grid-row: 2;
    margin-left: 0;
    justify-self: start;
}

.store-menu-pill {
    margin-left: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    min-width: 124px;
    padding: 0.32rem 0.72rem;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--primary) 22%, #ffffff);
    background: color-mix(in srgb, var(--primary) 10%, #ffffff);
    color: var(--primary);
    text-align: center;
    line-height: 1;
}

.store-menu-pill-label {
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.store-menu-pill-time {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.store-menu-pill.is-countdown .store-menu-pill-time {
    font-variant-numeric: tabular-nums;
}

.store-menu-footer {
    padding: 0.85rem 0.95rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.coupons-modal {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
        #ffffff;
    color: #0f172a;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    min-height: 100dvh;
}

.coupons-modal-dialog {
    margin: 0 !important;
    max-width: none !important;
    width: 100vw !important;
    height: 100dvh;
}

#couponsModal .modal-dialog {
    max-width: none;
    width: 100vw;
    margin: 0;
    height: 100dvh;
}

#couponsModal .modal-body {
    padding: 0;
    background: transparent;
}

.coupons-modal-shell {
    min-height: 100dvh;
    width: min(100%, 720px);
    padding: 0 1rem 2rem;
    background: transparent;
}

.coupons-modal-topbar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0 0.8rem;
    background: transparent;
}

.coupons-modal-back {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, #ffffff);
    background: #ffffff;
    color: var(--primary);
    display: inline-grid;
    place-items: center;
    font-size: 1.3rem;
    padding: 0;
    flex: 0 0 44px;
}

.coupons-modal-brand {
    display: flex;
    align-items: center;
    gap: 0.68rem;
    min-width: 0;
}

.coupons-modal-brand img,
.coupons-modal-brand-fallback {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex: 0 0 42px;
}

.coupons-modal-brand-fallback {
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
}

.coupons-modal-brand strong {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coupons-modal-heading {
    padding: 0.9rem 0 0.3rem;
}

.coupons-modal-heading h3 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
}

.coupons-modal-heading p {
    margin: 0.38rem 0 0;
    font-size: 0.92rem;
    color: #64748b;
}

.coupons-list {
    display: grid;
    gap: 0.9rem;
    padding: 0.9rem 0 1rem;
}

.coupon-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    border: 1px dashed color-mix(in srgb, var(--primary) 46%, #fca5a5);
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.coupon-entry-main {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.coupon-entry-code {
    display: flex;
    align-items: center;
    gap: 0.56rem;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #111827;
}

.coupon-entry-code i {
    color: var(--primary);
    font-size: 1.18rem;
}

.coupon-entry-meta {
    display: grid;
    gap: 0.42rem;
}

.coupon-entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.46rem;
    font-size: 0.82rem;
    color: #64748b;
}

.coupon-entry-meta i {
    color: var(--primary);
}

.coupon-entry-side {
    padding: 1rem;
    background: color-mix(in srgb, var(--primary) 8%, #ffffff);
    border-left: 1px dashed color-mix(in srgb, var(--primary) 46%, #fca5a5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.coupon-entry-value {
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

.coupon-entry-btn {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    font-weight: 700;
}

.coupons-empty-state {
    padding: 2rem 0 2.2rem;
    display: grid;
    place-items: center;
    gap: 0.55rem;
    text-align: center;
    color: #64748b;
}

.coupons-empty-state i {
    font-size: 2rem;
    color: var(--primary);
}

.coupons-empty-state strong {
    font-size: 0.94rem;
    color: #0f172a;
}

.store-info-modal {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.store-info-inline-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: -2px;
}

.store-info-block-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.store-info-cover {
    position: relative;
    height: 170px;
    background-size: cover;
    background-position: center;
}

.store-info-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.52));
}

.store-info-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
}

.store-info-close.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(220%);
}

.store-info-back {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: var(--primary);
    display: inline-grid;
    place-items: center;
    font-size: 1.25rem;
    padding: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}

.store-info-header {
    margin-top: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    background: #ffffff;
    padding: 0 0.95rem 0.6rem;
    border-bottom: 1px solid #eef2f7;
}

.store-info-logo {
    margin-top: -46px;
    margin-bottom: 0.55rem;
}

.store-info-logo img,
.store-info-logo span {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 3px solid #ffffff;
    object-fit: cover;
    display: inline-grid;
    place-items: center;
    font-size: 0.94rem;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15);
}

.store-info-header h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.store-info-name {
    color: #0f172a;
    text-shadow: none;
}

.store-info-meta {
    margin-top: 0.55rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
    margin-left: 0;
    margin-right: 0;
    padding: 0.52rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.store-info-logo-white {
    filter: none;
}

.store-info-modal .modal-body {
    padding: 0.82rem 0.92rem 1rem;
}

.store-info-section + .store-info-section {
    margin-top: 0.82rem;
    padding-top: 0.76rem;
    border-top: 1px solid #eef2f7;
}

.store-info-section h4 {
    margin: 0 0 0.52rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f172a;
}

.store-delivery-grid {
    display: grid;
    gap: 0.48rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-delivery-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.62rem 0.5rem;
    text-align: center;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.34rem;
}

.store-delivery-card i {
    font-size: 1.05rem;
    color: var(--primary);
}

.store-delivery-card strong {
    font-size: 0.8rem;
    color: #0f172a;
}

.store-map-frame {
    width: 100%;
    height: 170px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 0.58rem;
}

.store-map-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.58rem;
    display: block;
}

.store-map-empty {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 0.86rem;
    margin-bottom: 0.58rem;
    color: #64748b;
    background: #f8fafc;
}

.store-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.52rem;
    font-size: 0.82rem;
    margin-top: 0.45rem;
    color: #334155;
}

.store-contact-row i {
    font-size: 0.95rem;
    line-height: 1;
    color: #64748b;
    margin-top: 0.08rem;
}

.store-contact-row a {
    color: #1d4ed8;
    text-decoration: none;
}

.store-timeline-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.56rem;
    display: block;
}

.store-hours-list {
    margin-top: 0.6rem;
    position: relative;
    padding-left: 1rem;
}

.store-hours-list::before {
    content: '';
    position: absolute;
    left: 0.28rem;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 2px;
    background: linear-gradient(180deg, #e2e8f0, #f1f5f9);
}

.store-hours-row {
    position: relative;
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    padding: 0.4rem 0.54rem 0.42rem 0.86rem;
    font-size: 0.82rem;
    line-height: 1.35;
}

.store-hours-row + .store-hours-row {
    margin-top: 0.4rem;
}

.store-hours-row::before {
    content: '';
    position: absolute;
    left: -0.74rem;
    top: 0.6rem;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 2px #ffffff;
}

.store-hours-row strong {
    width: auto;
    display: block;
    font-size: 0.73rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.08rem;
}

.store-hours-row span {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: #0f172a;
}

.store-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.store-payments span {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
    font-size: 0.73rem;
    font-weight: 600;
    color: #334155;
}

.store-about-text {
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.45;
}

.store-legal {
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

.store-info-section .status-badge {
    font-size: 0.68rem;
    padding: 0.24rem 0.52rem;
    margin-bottom: 0.5rem;
}

.cart-items {
    display: grid;
    gap: 0.75rem;
}

.cart-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 0.62rem;
}

.cart-item h6 {
    margin: 0;
    font-size: 0.9rem;
}

.cart-item small {
    color: #6b7280;
}

.cart-item .controls {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.summary-box {
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    background: #fff;
    padding: 0.72rem;
}

.summary-box hr {
    border-color: #e5e7eb;
}

.modal-content {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #111827;
}

.modal-header,
.modal-footer {
    border-color: #e5e7eb;
}

.modal .btn-close-white {
    filter: none;
}

#storeInfoModal .modal-dialog {
    max-width: 520px;
    width: min(92vw, 520px);
}

#storeInfoModal .modal-content {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

#storeInfoModal .modal-body {
    background: #ffffff;
    color: #0f172a;
}

#storeInfoModal .store-info-header {
    background: #ffffff;
}

#storeInfoModal .store-info-name {
    color: #0f172a;
}

#storeInfoModal .store-info-meta {
    color: #334155;
}

#storeInfoModal .store-info-section h4,
#storeInfoModal .store-contact-row,
#storeInfoModal .store-hours-row,
#storeInfoModal .store-payments span,
#storeInfoModal .store-legal,
#storeInfoModal .store-about-text {
    color: #0f172a;
}

#storeInfoModal .store-contact-row span,
#storeInfoModal .store-contact-row a {
    color: #334155;
}

#storeInfoModal .store-contact-row a {
    color: #1d4ed8;
}

#storeInfoModal .store-payments span {
    background: #f8fafc;
    border-color: #e2e8f0;
}

#storeInfoModal .store-map-empty {
    background: #f8fafc;
}

#storeInfoModal .store-info-close.btn-close-white {
    filter: none;
}

.modal-product-image {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
}

.complement-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: #fff;
}

.complement-item .comp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.45rem;
}

.complement-group {
    margin-top: 0.85rem;
}

.complement-group:first-child {
    margin-top: 0;
}

.complement-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.48rem;
}

.complement-group-title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
}

.complement-group-limit {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.72rem;
    color: #64748b;
}

.complement-group-ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.22);
}

.comp-option {
    width: 100%;
    cursor: pointer;
}

.comp-option-main {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.comp-option-input {
    margin: 0;
    flex: 0 0 auto;
    accent-color: var(--primary);
    border-color: color-mix(in srgb, var(--primary) 34%, #cbd5e1);
    box-shadow: none;
}

.comp-option-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.16rem color-mix(in srgb, var(--primary) 18%, transparent);
}

.comp-option-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
    background: #f8fafc;
    flex: 0 0 auto;
}

.comp-option-copy {
    min-width: 0;
}

.comp-option-copy strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #0f172a;
}

.comp-option-copy .comp-meta {
    margin-top: 0.12rem;
}

.comp-option-copy .comp-note {
    display: block;
    margin-top: 0.14rem;
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.35;
}

.comp-option-qty {
    width: 74px;
}

.complement-item .comp-meta {
    font-size: 0.75rem;
    color: #6b7280;
}

#productModal .modal-dialog {
    max-width: 560px;
    width: min(94vw, 560px);
    margin: 0.7rem auto;
}

#productModal .modal-content {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    color: #0f172a;
    max-height: min(94vh, 920px);
    display: flex;
    flex-direction: column;
}

.product-modal-scroll {
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
}

.product-modal-hero {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 300px;
    background: #f8fafc;
}

.product-modal-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
}

.product-modal-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-modal-back {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background: var(--primary);
    color: #ffffff;
    display: inline-grid;
    place-items: center;
    font-size: 1.4rem;
    z-index: 3;
}

.product-modal-back:hover {
    background: var(--secondary);
    border-color: #ffffff;
}

.product-modal-panel {
    position: relative;
    z-index: 2;
    margin-top: -24px;
    border-radius: 18px 18px 0 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    padding: 1rem 1rem 1.1rem;
}

.product-modal-title {
    margin: 0;
    font-size: 1.52rem;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #0f172a;
}

.product-modal-description {
    margin: 0.65rem 0 0;
    font-size: 1.02rem;
    line-height: 1.45;
    color: #334155;
}

.product-modal-section {
    margin-top: 1rem;
}

.product-modal-section-title {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
}

#productModal #productNote {
    background: #ffffff;
    border-color: #d1d5db;
    color: #0f172a;
}

#productModal #productNote::placeholder {
    color: #94a3b8;
}

#productModal .complement-item {
    border: 0;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 0.65rem 0;
    margin: 0;
    background: transparent;
}

#productModal .complement-item:first-child {
    border-top: 1px solid #e5e7eb;
}

#productModal .complement-item .comp-head label {
    color: #0f172a;
    width: 100%;
}

#productModal .complement-item .comp-meta {
    color: #64748b;
}

#productModal .product-complements-empty {
    color: #64748b;
    font-size: 0.9rem;
}

#productModal .comp-qty {
    background: #ffffff;
    border-color: #d1d5db;
    color: #0f172a;
}

.product-modal-footer {
    border-top: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.72rem 0.95rem 0.9rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.68rem;
    align-items: center;
}

.product-modal-price {
    font-size: 2.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.product-qty-stepper {
    min-width: 136px;
    height: 44px;
    border-radius: 999px;
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    padding: 0.2rem 0.3rem;
}

.product-qty-stepper > span {
    min-width: 24px;
    text-align: center;
    color: #0f172a;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}

.product-qty-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #0f172a;
    font-size: 1.55rem;
    line-height: 1;
    display: inline-grid;
    place-items: center;
}

.product-modal-add-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn {
    border-radius: var(--btn-radius);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-danger {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-danger:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

[data-card-layout='compact'] .product-thumb-wrap {
    width: clamp(64px, calc(var(--product-image-width, 112px) * 0.9 * var(--cardapio-layout-scale, 1)), 220px);
    height: clamp(52px, calc(var(--product-image-height, 88px) * 0.9 * var(--cardapio-layout-scale, 1)), 220px);
}

[data-card-layout='classic'] .product-card {
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .section-products {
        grid-template-columns: repeat(var(--section-columns-md, var(--front-columns-md, 2)), minmax(0, 1fr));
    }

    .store-info-header h3 {
        font-size: 1.55rem;
    }

    .store-info-section h4 {
        font-size: 1.45rem;
    }

    .store-delivery-card strong {
        font-size: 1.02rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 168px;
    }

    .store-logo,
    .store-logo-fallback {
        width: 74px;
        height: 74px;
    }

    .store-title {
        font-size: 0.94rem;
    }

    .store-meta-line {
        gap: 0.45rem;
        font-size: 0.73rem;
    }

    .section-products {
        grid-template-columns: 1fr;
    }

    .menu-section-head h2 {
        font-size: 0.9rem;
    }

    .product-card {
        grid-template-columns: minmax(72px, clamp(72px, calc(var(--product-image-width, 112px) * var(--cardapio-layout-scale, 1)), 140px)) minmax(0, 1fr);
        padding: 0.49rem;
    }

    .product-thumb-wrap {
        width: clamp(72px, calc(var(--product-image-width, 112px) * var(--cardapio-layout-scale, 1)), 140px);
        height: clamp(56px, calc(var(--product-image-height, 88px) * var(--cardapio-layout-scale, 1)), 120px);
    }

    .store-menu-canvas {
        width: min(92vw, var(--front-menu-width)) !important;
    }

    .store-menu-item {
        padding: 0.8rem 0.82rem;
    }

    .store-menu-item i {
        font-size: 0.94rem;
    }

    .store-menu-item-coupon {
        grid-template-columns: 18px minmax(0, 1fr);
        column-gap: 0.62rem;
        row-gap: 0.18rem;
    }

    .store-menu-pill {
        min-width: 112px;
        padding: 0.28rem 0.58rem;
    }

    .store-menu-pill-label {
        font-size: 0.58rem;
    }

    .store-menu-pill-time {
        font-size: 0.8rem;
    }

    .store-info-cover {
        height: 156px;
    }

    .product-modal-hero {
        height: 240px;
    }

    .product-modal-title {
        font-size: 1.28rem;
    }

    .product-modal-description {
        font-size: 0.95rem;
    }

    .product-modal-price {
        font-size: 1.75rem;
    }

    .product-qty-stepper {
        min-width: 126px;
        height: 42px;
    }

    .product-modal-add-btn {
        min-height: 48px;
        font-size: 0.92rem;
    }

    .store-info-back {
        width: 38px;
        height: 38px;
        font-size: 1.02rem;
        top: 0.72rem;
        left: 0.72rem;
    }

    .store-info-logo img,
    .store-info-logo span {
        width: 84px;
        height: 84px;
    }

    .store-info-header h3 {
        font-size: 1.28rem;
    }

    .store-info-meta {
        font-size: 0.76rem;
        gap: 0.42rem;
    }

    .store-info-section h4 {
        font-size: 0.9rem;
    }

    .store-delivery-grid {
        grid-template-columns: 1fr;
    }

    .store-map-frame {
        height: 158px;
    }

    .store-map-image {
        height: 158px;
    }

    #couponsModal .modal-dialog {
        width: 100vw;
    }

    .coupons-modal-shell {
        min-height: 100dvh;
        width: 100%;
        padding: 0 0.9rem 1.4rem;
    }

    .coupon-entry {
        grid-template-columns: 1fr;
    }

    .coupon-entry-side {
        border-left: 0;
        border-top: 1px dashed color-mix(in srgb, var(--primary) 46%, #fca5a5);
    }

    .coupon-entry-btn {
        max-width: 240px;
    }

    .store-timeline-image {
        height: 160px;
    }

    .store-contact-row,
    .store-hours-row,
    .store-payments span,
    .store-legal {
        font-size: 0.8rem;
    }

    .checkout-step-btn {
        min-height: 52px;
        font-size: 0.68rem;
    }

    .checkout-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-step-btn span {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .checkout-account-grid,
    .checkout-review-grid {
        grid-template-columns: 1fr;
    }

    .checkout-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .front-topbar-inner {
        width: calc(100% - 0.75rem);
    }

    .category-strip-wrap {
        padding: 0.52rem 0.42rem 0.48rem;
    }

    .toolbar-search {
        margin-bottom: 0.42rem;
    }

    .search-input {
        min-height: var(--front-search-height);
        font-size: 0.84rem;
    }

    .chip {
        border-radius: 10px;
        padding: 0.42rem 0.78rem;
        min-height: 40px;
        font-size: 0.74rem;
    }

    .chip-media {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .menu-section-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .menu-main {
        width: calc(100% - 0.72rem);
    }

    .cart-fab {
        left: 0.62rem;
        right: 0.62rem;
        border-radius: 12px;
    }

    #productModal .modal-dialog {
        width: 100%;
        max-width: 100%;
        margin: 0;
        min-height: 100dvh;
        display: flex;
        align-items: stretch;
    }

    #productModal .modal-content {
        min-height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .product-modal-panel {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    #cartCanvas.offcanvas {
        width: 100vw !important;
        max-width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }

    #cartCanvas .offcanvas-body {
        padding: 0.74rem;
    }

    .checkout-account-required {
        padding: 0.8rem;
    }

    .checkout-account-required p {
        font-size: 0.78rem;
    }

    .store-info-modal .modal-body {
        padding: 0.72rem 0.74rem 0.85rem;
    }

    .store-info-section + .store-info-section {
        margin-top: 0.72rem;
        padding-top: 0.68rem;
    }

    .store-timeline-image {
        height: 140px;
    }
}

/* Refino do popup "Ver mais" */
#storeInfoModal .modal-dialog {
    max-width: 560px;
    width: min(92vw, 560px);
}

#storeInfoModal .modal-content {
    border-radius: 14px;
    border-color: #e2e8f0;
    overflow: hidden;
}

#storeInfoModal .store-info-cover {
    height: 260px;
}

#storeInfoModal .store-info-header {
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: #fff;
    padding: 0 0.95rem 0.72rem;
    border-bottom: 0;
}

#storeInfoModal .store-info-logo {
    margin-top: -50px;
    margin-bottom: 0.55rem;
}

#storeInfoModal .store-info-logo img,
#storeInfoModal .store-info-logo span {
    width: 96px;
    height: 96px;
    border: 3px solid #fff;
}

#storeInfoModal .store-info-name {
    color: #fff;
    font-size: 2.15rem;
}

#storeInfoModal .store-info-meta {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    padding: 0.56rem 0.65rem;
}

#storeInfoModal .store-info-back {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    background: var(--primary);
    color: #fff;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    #storeInfoModal .modal-dialog {
        width: 94vw;
        max-width: 94vw;
    }

    #storeInfoModal .store-info-cover {
        height: 196px;
    }

    #storeInfoModal .store-info-name {
        font-size: 1.65rem;
    }

    #storeInfoModal .store-info-logo img,
    #storeInfoModal .store-info-logo span {
        width: 84px;
        height: 84px;
    }
}

/* Modo dark do catalogo (ativado em Aparencia) */
body[data-front-theme='dark'] {
    color: #e5e7eb;
    background:
        radial-gradient(circle at 0% 0%, rgba(30, 41, 59, 0.28), transparent 32%),
        radial-gradient(circle at 100% 0%, rgba(15, 23, 42, 0.38), transparent 28%),
        #0b0f15;
}

body[data-front-theme='dark'] .front-topbar,
body[data-front-theme='dark'] .category-strip-wrap {
    background: rgba(14, 19, 27, 0.95);
    border-color: #253246;
}

body[data-front-theme='dark'] .topbar-icon,
body[data-front-theme='dark'] .menu-bars-btn {
    background: #131b27;
    border-color: #2a3444;
    color: #e5e7eb;
}

body[data-front-theme='dark'] .menu-bars-btn i {
    color: color-mix(in srgb, var(--primary) 64%, #ffffff);
}

body[data-front-theme='dark'] .store-title,
body[data-front-theme='dark'] .menu-section-head h2,
body[data-front-theme='dark'] .menu-section-title span,
body[data-front-theme='dark'] .product-body h3,
body[data-front-theme='dark'] .price-box strong {
    color: #f8fafc;
}

body[data-front-theme='dark'] .store-subtitle,
body[data-front-theme='dark'] .store-meta-line,
body[data-front-theme='dark'] .menu-section-head > span,
body[data-front-theme='dark'] .product-body p,
body[data-front-theme='dark'] .price-box small {
    color: #9ca3af;
}

body[data-front-theme='dark'] .search-input {
    background: #111827;
    border-color: #2a3444;
    color: #f1f5f9;
}

body[data-front-theme='dark'] .search-input::placeholder {
    color: #64748b;
}

body[data-front-theme='dark'] .chip {
    background: transparent;
    border-color: transparent;
    color: #e5e7eb;
}

body[data-front-theme='dark'] .chip:hover {
    border-color: transparent;
    background: transparent;
    color: color-mix(in srgb, var(--primary) 88%, #ffffff);
}

body[data-front-theme='dark'] .chip.active {
    border-color: var(--primary);
    background: transparent;
    color: color-mix(in srgb, var(--primary) 90%, #ffffff);
}

body[data-front-theme='dark'] .chip-media,
body[data-front-theme='dark'] .menu-section-icon {
    border-color: #243041;
    background: #111827;
}

body[data-front-theme='dark'] .menu-main {
    background: #0f1520;
}

body[data-front-theme='dark'] .product-card {
    background: #141b27;
    border-color: #2a3444;
}

body[data-front-theme='dark'] .product-coupon-timer {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(249, 115, 22, 0.3);
}

body[data-front-theme='dark'] .product-coupon-timer-text {
    color: #fdba74;
}

body[data-front-theme='dark'] .product-card:hover {
    border-color: #3b4a63;
}

body[data-front-theme='dark'] .product-thumb-wrap {
    border-color: #2b3648;
}

body[data-front-theme='dark'] .products-empty {
    background: #111827;
    border-color: #2a3444;
    color: #94a3b8;
}

body[data-front-theme='dark'] #cartCanvas.offcanvas,
body[data-front-theme='dark'] .store-menu-canvas,
body[data-front-theme='dark'] .store-info-modal,
body[data-front-theme='dark'] .modal-content {
    background: #0f1722;
    color: #e5e7eb;
    border-color: #2a3444;
}

body[data-front-theme='dark'] .store-menu-item,
body[data-front-theme='dark'] .summary-box,
body[data-front-theme='dark'] .checkout-step-card,
body[data-front-theme='dark'] .checkout-step-btn {
    background: #111b28;
    border-color: #2a3444;
    color: #e5e7eb;
}

body[data-front-theme='dark'] .checkout-step-btn span {
    border-color: #3a475d;
}

/* Overrides fortes do modo dark para areas com seletores por #id */
body[data-front-theme='dark'] #storeMenuCanvas.store-menu-canvas,
body[data-front-theme='dark'] .store-menu-canvas {
    background: #0f1722;
    color: #e5e7eb;
    border-right-color: #253246;
}

body[data-front-theme='dark'] #storeMenuCanvas .offcanvas-header,
body[data-front-theme='dark'] .store-menu-canvas .offcanvas-header {
    background: #121b29;
    border-bottom-color: #253246;
}

body[data-front-theme='dark'] #storeMenuCanvas .offcanvas-body,
body[data-front-theme='dark'] .store-menu-canvas .offcanvas-body {
    background: #0f1722;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-brand strong,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-brand strong {
    color: #f8fafc;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-brand img,
body[data-front-theme='dark'] #storeMenuCanvas .store-menu-brand-fallback,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-brand img,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-brand-fallback {
    border-color: #314056;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-item,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-item {
    background: #111b28;
    color: #e5e7eb;
    border-top-color: #253246;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-item i,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-item i {
    color: #94a3b8;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-item:hover,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-item:hover {
    background: #152233;
    color: #ffffff;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-pill,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-pill {
    border-color: color-mix(in srgb, var(--primary) 32%, #0f172a);
    background: color-mix(in srgb, var(--primary) 20%, #0f172a);
    color: #f8fafc;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-footer,
body[data-front-theme='dark'] .store-menu-canvas .store-menu-footer {
    background: #121b29;
    color: #94a3b8;
    border-top-color: #253246;
}

body[data-front-theme='dark'] #storeMenuCanvas .btn-close-white,
body[data-front-theme='dark'] .store-menu-canvas .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(190%);
}

body[data-front-theme='dark'] #storeInfoModal .modal-content,
body[data-front-theme='dark'] #storeInfoModal.store-info-modal,
body[data-front-theme='dark'] #storeInfoModal .store-info-modal {
    background: #0f1722;
    border-color: #253246;
    color: #e5e7eb;
}

body[data-front-theme='dark'] #storeInfoModal .modal-body {
    background: #0f1722;
    color: #e5e7eb;
}

body[data-front-theme='dark'] #storeInfoModal .store-info-section + .store-info-section {
    border-top-color: #253246;
}

body[data-front-theme='dark'] #storeInfoModal .store-info-section h4,
body[data-front-theme='dark'] #storeInfoModal .store-contact-row,
body[data-front-theme='dark'] #storeInfoModal .store-hours-row,
body[data-front-theme='dark'] #storeInfoModal .store-legal,
body[data-front-theme='dark'] #storeInfoModal .store-about-text {
    color: #e5e7eb;
}

body[data-front-theme='dark'] #storeInfoModal .store-contact-row span,
body[data-front-theme='dark'] #storeInfoModal .store-contact-row a,
body[data-front-theme='dark'] #storeInfoModal .store-hours-row span {
    color: #cbd5e1;
}

body[data-front-theme='dark'] #storeInfoModal .store-delivery-card {
    background: #131d2b;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] #storeInfoModal .store-delivery-card strong {
    color: #f1f5f9;
}

body[data-front-theme='dark'] #storeInfoModal .store-payments span {
    background: #131d2b;
    border-color: #2b3a50;
    color: #e5e7eb;
}

body[data-front-theme='dark'] #storeInfoModal .store-map-empty {
    background: #111b28;
    border-color: #314056;
    color: #94a3b8;
}

body[data-front-theme='dark'] #storeInfoModal .store-info-back {
    background: var(--primary);
    border-color: #ffffff;
    color: #ffffff;
}

body[data-front-theme='dark'] #cartCanvas.offcanvas {
    background: #0f1722;
    color: #e5e7eb;
}

body[data-front-theme='dark'] #cartCanvas .offcanvas-header {
    border-color: #253246 !important;
    background: #121b29;
}

body[data-front-theme='dark'] #cartCanvas .offcanvas-title {
    color: #f8fafc;
}

body[data-front-theme='dark'] #cartCanvas .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(190%);
}

body[data-front-theme='dark'] #cartCanvas .form-control,
body[data-front-theme='dark'] #cartCanvas .form-select,
body[data-front-theme='dark'] #cartCanvas textarea {
    background: #111b28;
    border-color: #2a3444;
    color: #f1f5f9;
}

body[data-front-theme='dark'] #cartCanvas .form-control::placeholder,
body[data-front-theme='dark'] #cartCanvas textarea::placeholder {
    color: #64748b;
}

body[data-front-theme='dark'] #cartCanvas .summary-box {
    background: #111b28;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] #cartCanvas .summary-box hr {
    border-color: #2b3a50;
}


#cartCanvas #checkoutAccountRequired {
    margin-top: 1rem;
}

#checkoutOverviewBlock.coupon-decision-only + #checkoutOverviewDivider {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 575.98px) {
    #cartCanvas #checkoutAccountRequired {
        margin-top: 1.1rem;
    }

    #checkoutOverviewBlock.coupon-decision-only + #checkoutOverviewDivider {
        margin-top: 1.05rem !important;
        margin-bottom: 1.05rem !important;
    }
}

body[data-front-theme='dark'] #cartCanvas #couponFeedback {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #cartCanvas .coupon-code-input {
    background: #111b28;
    border-color: #2a3444;
    color: #f1f5f9;
}

body[data-front-theme='dark'] #cartCanvas .coupon-input-icon {
    color: color-mix(in srgb, var(--primary) 60%, #f8fafc);
}

body[data-front-theme='dark'] #cartCanvas .coupon-decision-box {
    border-color: #2b3a50;
    background: linear-gradient(180deg, #111b28 0%, #0f1724 100%);
    box-shadow: none;
}

body[data-front-theme='dark'] #cartCanvas .coupon-decision-title {
    color: #f8fafc;
}

body[data-front-theme='dark'] #cartCanvas .coupon-decision-message {
    color: #cbd5e1;
}

body[data-front-theme='dark'] #cartCanvas #checkoutOverviewDivider {
    border-color: #253246;
}

body[data-front-theme='dark'] #cartCanvas .checkout-account-required {
    background: #131d2b;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] #cartCanvas .checkout-account-icon {
    background: #1b2738;
    border-color: #334861;
    color: #f8fafc;
}

body[data-front-theme='dark'] #cartCanvas .checkout-account-required h6,
body[data-front-theme='dark'] #cartCanvas .checkout-step-card h6,
body[data-front-theme='dark'] #cartCanvas .checkout-review-grid strong,
body[data-front-theme='dark'] #cartCanvas .checkout-account-grid strong,
body[data-front-theme='dark'] #cartCanvas .checkout-delivery-mode-note strong,
body[data-front-theme='dark'] #cartCanvas .checkout-distance-box strong {
    color: #f8fafc;
}

body[data-front-theme='dark'] #cartCanvas .checkout-account-required p,
body[data-front-theme='dark'] #cartCanvas .checkout-step-card p,
body[data-front-theme='dark'] #cartCanvas .checkout-account-grid small,
body[data-front-theme='dark'] #cartCanvas .checkout-review-grid small,
body[data-front-theme='dark'] #cartCanvas .checkout-delivery-mode-note small,
body[data-front-theme='dark'] #cartCanvas .checkout-distance-box small {
    color: #94a3b8;
}

body[data-front-theme='dark'] #cartCanvas .checkout-step-btn {
    background: #111b28;
    border-color: #2b3a50;
    color: #cbd5e1;
}

body[data-front-theme='dark'] #cartCanvas .checkout-step-btn span {
    background: #1c2a3f;
    border-color: #334861;
    color: #cbd5e1;
}

body[data-front-theme='dark'] #cartCanvas .checkout-step-btn.active,
body[data-front-theme='dark'] #cartCanvas .checkout-step-btn.done {
    background: color-mix(in srgb, var(--secondary) 20%, #0f1722);
    border-color: color-mix(in srgb, var(--secondary) 60%, #111827);
    color: color-mix(in srgb, var(--primary) 24%, #ffffff);
}

body[data-front-theme='dark'] #cartCanvas .checkout-step-btn.active span,
body[data-front-theme='dark'] #cartCanvas .checkout-step-btn.done span {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

body[data-front-theme='dark'] #cartCanvas .checkout-step-card,
body[data-front-theme='dark'] #cartCanvas .checkout-account-grid > div,
body[data-front-theme='dark'] #cartCanvas .checkout-review-grid > div,
body[data-front-theme='dark'] #cartCanvas .checkout-online-card,
body[data-front-theme='dark'] #cartCanvas .checkout-delivery-mode-note,
body[data-front-theme='dark'] #cartCanvas .checkout-distance-box {
    background: #131d2b;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] #cartCanvas .cart-item {
    background: #131d2b !important;
    border-color: #2b3a50 !important;
    color: #e5e7eb !important;
}

body[data-front-theme='dark'] #cartCanvas .cart-item h6 {
    color: #f8fafc !important;
}

body[data-front-theme='dark'] #cartCanvas .cart-item small {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #cartCanvas .form-label {
    color: #cbd5e1;
}

body[data-front-theme='dark'] #cartCanvas .btn-outline-secondary {
    color: #cbd5e1;
    border-color: #3a4a62;
    background: #111b28;
}

body[data-front-theme='dark'] #cartCanvas .btn-outline-secondary:hover,
body[data-front-theme='dark'] #cartCanvas .btn-outline-secondary:focus {
    color: #f8fafc;
    border-color: #4b607f;
    background: #162437;
}

body[data-front-theme='dark'] #cartCanvas .btn-outline-danger {
    color: color-mix(in srgb, var(--primary) 24%, #ffffff);
    border-color: color-mix(in srgb, var(--secondary) 60%, #111827);
    background: color-mix(in srgb, var(--secondary) 20%, #0f1722);
}

body[data-front-theme='dark'] #cartCanvas .btn-outline-danger:hover,
body[data-front-theme='dark'] #cartCanvas .btn-outline-danger:focus {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

body[data-front-theme='dark'] #cartCanvas .btn-primary {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

body[data-front-theme='dark'] #checkoutSuccessModal .modal-content.checkout-success-modal {
    background: #0f1722;
    border-color: #253246;
}

body[data-front-theme='dark'] #checkoutSuccessModal .checkout-success-icon {
    background: #152a21;
    border-color: #2f6f4f;
    color: #86efac;
}

body[data-front-theme='dark'] #checkoutSuccessModal h5,
body[data-front-theme='dark'] #checkoutSuccessModal p {
    color: #e5e7eb;
}

body[data-front-theme='dark'] #checkoutSuccessModal .checkout-success-code {
    background: color-mix(in srgb, var(--secondary) 20%, #0f1722);
    border-color: color-mix(in srgb, var(--secondary) 60%, #111827);
    color: color-mix(in srgb, var(--primary) 24%, #ffffff);
}

body[data-front-theme='dark'] #checkoutSuccessModal .checkout-success-qr-wrap {
    background: #111b28;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] #checkoutSuccessModal .checkout-success-qr-help {
    color: #94a3b8;
}

body[data-front-theme='dark'] #checkoutSuccessModal .checkout-success-qr-box img {
    border-color: #334155;
    background: #ffffff;
}

body[data-front-theme='dark'] .catalog-footer {
    background: #0f1722;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] .catalog-footer-item {
    color: #94a3b8;
}

body[data-front-theme='dark'] .catalog-footer-item strong {
    color: #f8fafc;
}

body[data-front-theme='dark'] a.catalog-footer-item {
    color: color-mix(in srgb, var(--primary) 64%, #ffffff);
}

/* Correcao final de pontos claros no dark mode (somente areas solicitadas) */
body[data-front-theme='dark'] #storeMenuCanvas.store-menu-canvas {
    background: #0f1722 !important;
    color: #e5e7eb !important;
}

body[data-front-theme='dark'] #storeMenuCanvas .offcanvas-header,
body[data-front-theme='dark'] #storeMenuCanvas .offcanvas-body,
body[data-front-theme='dark'] #storeMenuCanvas .store-menu-footer,
body[data-front-theme='dark'] #storeMenuCanvas .store-menu-item {
    background: #111b28 !important;
    color: #e5e7eb !important;
}

body[data-front-theme='dark'] #storeMenuCanvas .offcanvas-header {
    border-bottom: 1px solid #253246 !important;
}

body[data-front-theme='dark'] #storeMenuCanvas .store-menu-footer {
    border-top: 1px solid #253246 !important;
}

body[data-front-theme='dark'] #storeInfoModal .modal-content,
body[data-front-theme='dark'] #storeInfoModal .modal-body,
body[data-front-theme='dark'] #storeInfoModal .store-info-header,
body[data-front-theme='dark'] #storeInfoModal .store-delivery-card,
body[data-front-theme='dark'] #storeInfoModal .store-payments span,
body[data-front-theme='dark'] #storeInfoModal .store-map-empty {
    background: #0f1722 !important;
    color: #e5e7eb !important;
    border-color: #2b3a50 !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-info-meta {
    background: #131d2b !important;
    border-color: #2b3a50 !important;
    color: #e5e7eb !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-info-section + .store-info-section {
    border-top-color: #253246 !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-hours-list::before {
    background: linear-gradient(180deg, #334155, #1e293b) !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-hours-row {
    background: #131d2b !important;
    border-color: #2b3a50 !important;
    color: #e5e7eb !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-hours-row strong {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-hours-row span {
    color: #e2e8f0 !important;
}

body[data-front-theme='dark'] #storeInfoModal .store-hours-row::before {
    box-shadow: 0 0 0 2px #0f1722 !important;
}

body[data-front-theme='dark'] #couponsModal .modal-content,
body[data-front-theme='dark'] #couponsModal .modal-body,
body[data-front-theme='dark'] #couponsModal .coupons-modal-shell,
body[data-front-theme='dark'] #couponsModal .coupons-modal-topbar,
body[data-front-theme='dark'] #couponsModal .coupon-entry {
    background: #0f1722 !important;
    color: #e5e7eb !important;
    border-color: #2b3a50 !important;
}

body[data-front-theme='dark'] #couponsModal .coupon-entry-side {
    background: color-mix(in srgb, var(--primary) 14%, #0f1722) !important;
    border-color: color-mix(in srgb, var(--primary) 36%, #334155) !important;
}

body[data-front-theme='dark'] #couponsModal .coupon-entry {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28) !important;
}

body[data-front-theme='dark'] #couponsModal .coupons-modal-back {
    background: #111b28 !important;
    color: color-mix(in srgb, var(--primary) 72%, #ffffff) !important;
    border-color: #2b3a50 !important;
}

body[data-front-theme='dark'] #couponsModal .coupons-modal-brand img,
body[data-front-theme='dark'] #couponsModal .coupons-modal-brand-fallback {
    border-color: #2b3a50 !important;
}

body[data-front-theme='dark'] #couponsModal .coupons-modal-brand strong,
body[data-front-theme='dark'] #couponsModal .coupons-modal-heading h3,
body[data-front-theme='dark'] #couponsModal .coupons-empty-state strong,
body[data-front-theme='dark'] #couponsModal .coupon-entry-code {
    color: #f8fafc !important;
}

body[data-front-theme='dark'] #couponsModal .coupons-modal-heading p,
body[data-front-theme='dark'] #couponsModal .coupon-entry-meta span,
body[data-front-theme='dark'] #couponsModal .coupons-empty-state {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #couponsModal .coupon-entry-code i,
body[data-front-theme='dark'] #couponsModal .coupon-entry-meta i,
body[data-front-theme='dark'] #couponsModal .coupons-empty-state i,
body[data-front-theme='dark'] #couponsModal .coupon-entry-value {
    color: color-mix(in srgb, var(--primary) 72%, #ffffff) !important;
}

body[data-front-theme='dark'] #cartCanvas .checkout-review-grid > div,
body[data-front-theme='dark'] #cartCanvas .checkout-account-grid > div,
body[data-front-theme='dark'] #cartCanvas .checkout-step-card {
    background: #131d2b !important;
    border-color: #2b3a50 !important;
    color: #e5e7eb !important;
}

body[data-front-theme='dark'] #cartCanvas .checkout-review-grid strong,
body[data-front-theme='dark'] #cartCanvas .checkout-account-grid strong,
body[data-front-theme='dark'] #cartCanvas .checkout-step-card h6,
body[data-front-theme='dark'] #cartCanvas .checkout-local-copy strong {
    color: #f8fafc !important;
}

body[data-front-theme='dark'] #cartCanvas .checkout-step-card p,
body[data-front-theme='dark'] #cartCanvas .checkout-account-grid small,
body[data-front-theme='dark'] #cartCanvas .checkout-review-grid small,
body[data-front-theme='dark'] #cartCanvas .checkout-local-copy small,
body[data-front-theme='dark'] #cartCanvas .checkout-online-copy small,
body[data-front-theme='dark'] #cartCanvas .checkout-online-hint,
body[data-front-theme='dark'] #cartCanvas .form-label {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #cartCanvas .checkout-order-type-btn {
    background: #0b1a31;
    border-color: rgba(148, 163, 184, 0.28);
    color: #e2e8f0;
}

body[data-front-theme='dark'] #cartCanvas .checkout-order-type-btn:hover,
body[data-front-theme='dark'] #cartCanvas .checkout-order-type-btn:focus-visible {
    background: color-mix(in srgb, var(--primary) 12%, #0b1a31);
    border-color: color-mix(in srgb, var(--primary) 48%, rgba(148, 163, 184, 0.28));
    color: #ffffff;
}

body[data-front-theme='dark'] #cartCanvas .btn-check:checked + .checkout-order-type-btn {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
}

body[data-front-theme='dark'] #cartCanvas .checkout-local-card:hover,
body[data-front-theme='dark'] #cartCanvas .checkout-local-card:focus,
body[data-front-theme='dark'] #cartCanvas .checkout-online-card:hover,
body[data-front-theme='dark'] #cartCanvas .checkout-online-card:focus {
    background: #162437;
    border-color: #41526c;
}

body[data-front-theme='dark'] #cartCanvas .checkout-local-card.is-active,
body[data-front-theme='dark'] #cartCanvas .checkout-online-card.is-active {
    background: color-mix(in srgb, var(--primary) 18%, #0f1722);
    border-color: color-mix(in srgb, var(--primary) 58%, #2b3a50);
}

body[data-front-theme='dark'] #cartCanvas .checkout-local-card,
body[data-front-theme='dark'] #cartCanvas .checkout-online-card {
    background: #101a29;
    border-color: #2b3a50;
}

body[data-front-theme='dark'] #cartCanvas .checkout-local-icon-wrap {
    background: color-mix(in srgb, var(--primary) 14%, #101a29);
    border-color: color-mix(in srgb, var(--primary) 28%, #2b3a50);
}

body[data-front-theme='dark'] #cartCanvas .checkout-online-logo-wrap {
    background: #ffffff;
    border-color: #334155;
}

body[data-front-theme='dark'] #productModal .modal-content,
body[data-front-theme='dark'] #productModal .product-modal-scroll,
body[data-front-theme='dark'] #productModal .product-modal-panel,
body[data-front-theme='dark'] #productModal .product-modal-footer {
    background: #0f1722 !important;
    color: #e5e7eb !important;
    border-color: #2b3a50 !important;
}

body[data-front-theme='dark'] #productModal .product-modal-title,
body[data-front-theme='dark'] #productModal .product-modal-price,
body[data-front-theme='dark'] #productModal .product-modal-section-title {
    color: #f8fafc !important;
}

body[data-front-theme='dark'] #productModal .product-modal-description,
body[data-front-theme='dark'] #productModal .product-complements-empty {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #productModal .complement-group-title {
    color: #cbd5e1 !important;
}

body[data-front-theme='dark'] #productModal .complement-group-limit {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #productModal .complement-group-ribbon {
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.28);
}

body[data-front-theme='dark'] #productModal .comp-option-thumb {
    background: #111b28 !important;
    border-color: #2b3a50 !important;
}

body[data-front-theme='dark'] #productModal .comp-option-copy strong {
    color: #f8fafc !important;
}

body[data-front-theme='dark'] #productModal .comp-option-copy .comp-note,
body[data-front-theme='dark'] #productModal .complement-item .comp-meta {
    color: #94a3b8 !important;
}

body[data-front-theme='dark'] #productModal #productNote {
    background: #111b28 !important;
    color: #e5e7eb !important;
    border-color: #2a3444 !important;
}

body[data-front-theme='dark'] #productModal #productNote::placeholder {
    color: #64748b !important;
}


.store-menu-canvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.store-menu-footer {
    margin-top: auto;
    padding: 14px 18px 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #f8fafc;
}

.store-menu-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.34rem;
    opacity: 0.92;
}

.store-menu-footer-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #64748b;
    text-transform: uppercase;
}

.store-menu-footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.store-menu-footer-image {
    max-width: 118px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.store-menu-footer-title {
    font-size: 0.93rem;
    font-weight: 700;
    color: #0f172a;
}

.store-menu-footer-link {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    word-break: break-word;
}

.store-menu-footer-link:hover {
    color: var(--primary);
}

.store-menu-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}

.store-menu-footer-version,
.store-menu-footer-rights {
    font-size: 0.74rem;
    color: #64748b;
}


.agent-modal {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.agent-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.8rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 10%, #ffffff), #ffffff);
}

.agent-modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.agent-modal-subtitle {
    color: var(--muted);
    font-size: 0.82rem;
}

.agent-modal-body {
    min-height: 320px;
    max-height: 52vh;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.agent-message {
    display: flex;
    margin-bottom: 0.85rem;
}

.agent-message-user {
    justify-content: flex-end;
}

.agent-message-bubble {
    max-width: min(88%, 420px);
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    white-space: pre-wrap;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.agent-message-user .agent-message-bubble {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.agent-modal-footer {
    padding: 0.9rem 1rem 1rem;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.agent-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
}

.agent-form .form-control {
    min-height: 46px;
    border-radius: 14px;
}

.agent-form .btn {
    min-width: 52px;
    border-radius: 14px;
}


.front-system-dialog {
    border-radius: 22px;
    overflow: hidden;
}

.front-system-dialog-headline {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.front-system-dialog-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--front-primary, #e63946) 10%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--front-primary, #e63946) 18%, #ffffff);
    color: var(--front-primary, #e63946);
    font-size: 1.15rem;
    flex: 0 0 auto;
}

.front-system-dialog-kicker {
    display: block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.18rem;
}

.front-system-dialog-message {
    color: #475569;
    line-height: 1.55;
    font-size: 0.95rem;
}

#frontSystemDialog[data-tone='danger'] .front-system-dialog-icon {
    background: color-mix(in srgb, #dc2626 10%, #ffffff);
    border-color: color-mix(in srgb, #dc2626 22%, #ffffff);
    color: #dc2626;
}

#frontSystemDialog[data-tone='warning'] .front-system-dialog-icon {
    background: color-mix(in srgb, #f59e0b 12%, #ffffff);
    border-color: color-mix(in srgb, #f59e0b 22%, #ffffff);
    color: #b45309;
}

#frontSystemDialog[data-tone='success'] .front-system-dialog-icon {
    background: color-mix(in srgb, #16a34a 10%, #ffffff);
    border-color: color-mix(in srgb, #16a34a 20%, #ffffff);
    color: #16a34a;
}


/* Scrollbars no modo dark do front */
html:has(body[data-front-theme='dark']),
body[data-front-theme='dark'],
body[data-front-theme='dark'] *,
body[data-front-theme='dark'] .offcanvas-body,
body[data-front-theme='dark'] .modal-body,
body[data-front-theme='dark'] .product-modal-scroll,
body[data-front-theme='dark'] .store-menu-canvas,
body[data-front-theme='dark'] #cartCanvas,
body[data-front-theme='dark'] #productModal,
body[data-front-theme='dark'] #storeInfoModal,
body[data-front-theme='dark'] #couponsModal {
    scrollbar-color: #5b6b82 #08111f;
}

html:has(body[data-front-theme='dark'])::-webkit-scrollbar,
body[data-front-theme='dark']::-webkit-scrollbar,
body[data-front-theme='dark'] *::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

html:has(body[data-front-theme='dark'])::-webkit-scrollbar-track,
html:has(body[data-front-theme='dark'])::-webkit-scrollbar-track-piece,
html:has(body[data-front-theme='dark'])::-webkit-scrollbar-corner,
body[data-front-theme='dark']::-webkit-scrollbar-track,
body[data-front-theme='dark']::-webkit-scrollbar-track-piece,
body[data-front-theme='dark']::-webkit-scrollbar-corner,
body[data-front-theme='dark'] *::-webkit-scrollbar-track,
body[data-front-theme='dark'] *::-webkit-scrollbar-track-piece,
body[data-front-theme='dark'] *::-webkit-scrollbar-corner {
    background: #08111f !important;
    border-radius: 999px;
}

html:has(body[data-front-theme='dark'])::-webkit-scrollbar-thumb,
body[data-front-theme='dark']::-webkit-scrollbar-thumb,
body[data-front-theme='dark'] *::-webkit-scrollbar-thumb {
    background: #5b6b82 !important;
    border: 2px solid #08111f !important;
    border-radius: 999px;
}

html:has(body[data-front-theme='dark'])::-webkit-scrollbar-thumb:hover,
body[data-front-theme='dark']::-webkit-scrollbar-thumb:hover,
body[data-front-theme='dark'] *::-webkit-scrollbar-thumb:hover {
    background: #7a8aa1 !important;
}


body[data-front-theme='dark'] .checkout-receipt-card {
    background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 18%, #0f1722) 0%, #0f1722 100%);
    border-color: color-mix(in srgb, var(--primary) 26%, #334155);
    color: #e5e7eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

body[data-front-theme='dark'] .checkout-receipt-top {
    background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 22%, #111827), rgba(15, 23, 34, 0.92));
    border-bottom-color: color-mix(in srgb, var(--primary) 28%, #334155);
}

body[data-front-theme='dark'] .checkout-receipt-badge {
    background: var(--primary);
    color: #ffffff;
}

body[data-front-theme='dark'] .checkout-receipt-eyebrow,
body[data-front-theme='dark'] .checkout-receipt-meta-grid small,
body[data-front-theme='dark'] .checkout-receipt-meta-block small,
body[data-front-theme='dark'] .checkout-receipt-line-complements li,
body[data-front-theme='dark'] .checkout-receipt-line-note,
body[data-front-theme='dark'] .checkout-receipt-totals > div {
    color: #94a3b8;
}

body[data-front-theme='dark'] .checkout-receipt-title,
body[data-front-theme='dark'] .checkout-receipt-line-main strong,
body[data-front-theme='dark'] .checkout-receipt-line-main span,
body[data-front-theme='dark'] .checkout-receipt-totals > div strong,
body[data-front-theme='dark'] .checkout-receipt-totals > div.is-total,
body[data-front-theme='dark'] .checkout-receipt-meta-grid strong,
body[data-front-theme='dark'] .checkout-receipt-meta-block strong {
    color: #f8fafc;
}

body[data-front-theme='dark'] .checkout-receipt-line,
body[data-front-theme='dark'] .checkout-receipt-totals > div.is-total {
    border-bottom-color: color-mix(in srgb, var(--primary) 20%, #334155);
    border-top-color: color-mix(in srgb, var(--primary) 20%, #334155);
}

body[data-front-theme='dark'] .checkout-receipt-divider {
    background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--primary) 34%, #334155) 0 12px, transparent 12px 20px);
}

body[data-front-theme='dark'] .checkout-receipt-meta-grid > div,
body[data-front-theme='dark'] .checkout-receipt-meta-block {
    background: color-mix(in srgb, var(--secondary) 10%, #0f1722);
    border-color: color-mix(in srgb, var(--primary) 24%, #334155);
}

body[data-front-theme='dark'] .checkout-receipt-empty {
    color: #94a3b8;
}


@media (max-width: 575.98px) {
    .checkout-receipt-meta-grid {
        grid-template-columns: 1fr;
    }

    .checkout-receipt-line-main {
        flex-direction: column;
    }
}


/* Ajuste final solicitado: recibo acompanhando cor do sistema no dark e sem campo visual de observação geral */
.checkout-review-grid small,
.checkout-account-grid small {
    font-weight: 500;
    letter-spacing: 0.025em;
}

.checkout-review-grid strong,
.checkout-account-grid strong {
    font-weight: 600;
}

.checkout-review-card h6,
.checkout-receipt-title {
    font-weight: 600;
}

#cartCanvas .checkout-observacao-wrap {
    display: none !important;
}

body[data-front-theme='dark'] .checkout-receipt-card {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 8%, #0f1722) 0%, #0f1722 100%) !important;
    border-color: color-mix(in srgb, var(--primary) 32%, #2b3a50) !important;
    color: #e5e7eb !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32) !important;
}

body[data-front-theme='dark'] .checkout-receipt-top {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 14%, #111827), rgba(15, 23, 34, 0.96)) !important;
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 26%, #334155) !important;
}

body[data-front-theme='dark'] .checkout-receipt-badge {
    background: color-mix(in srgb, var(--primary) 88%, #ffffff) !important;
    color: #ffffff !important;
    border: 1px solid color-mix(in srgb, var(--primary) 92%, #ffffff) !important;
}

body[data-front-theme='dark'] .checkout-receipt-eyebrow,
body[data-front-theme='dark'] .checkout-receipt-meta-grid small,
body[data-front-theme='dark'] .checkout-receipt-meta-block small,
body[data-front-theme='dark'] .checkout-receipt-line-complements li,
body[data-front-theme='dark'] .checkout-receipt-line-note,
body[data-front-theme='dark'] .checkout-receipt-totals > div {
    color: #9fb0c7 !important;
}

body[data-front-theme='dark'] .checkout-receipt-title,
body[data-front-theme='dark'] .checkout-receipt-line-main strong,
body[data-front-theme='dark'] .checkout-receipt-line-main span,
body[data-front-theme='dark'] .checkout-receipt-totals > div strong,
body[data-front-theme='dark'] .checkout-receipt-totals > div.is-total,
body[data-front-theme='dark'] .checkout-receipt-meta-grid strong,
body[data-front-theme='dark'] .checkout-receipt-meta-block strong {
    color: #f8fafc !important;
    font-weight: 600 !important;
}

body[data-front-theme='dark'] .checkout-receipt-line,
body[data-front-theme='dark'] .checkout-receipt-totals > div.is-total {
    border-bottom-color: color-mix(in srgb, var(--primary) 22%, #334155) !important;
    border-top-color: color-mix(in srgb, var(--primary) 22%, #334155) !important;
}

body[data-front-theme='dark'] .checkout-receipt-divider {
    background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--primary) 34%, #334155) 0 12px, transparent 12px 20px) !important;
}

body[data-front-theme='dark'] .checkout-receipt-meta-grid > div,
body[data-front-theme='dark'] .checkout-receipt-meta-block {
    background: color-mix(in srgb, var(--primary) 6%, #111b28) !important;
    border-color: color-mix(in srgb, var(--primary) 22%, #334155) !important;
}


/* Ajuste visual do comprovante final do checkout */
.checkout-review-card {
    display: none !important;
}

.checkout-printer-receipt {
    width: min(100%, 470px);
    margin: 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(7, 17, 34, 0.92) 0%, rgba(8, 13, 25, 0.98) 100%);
    box-shadow: 0 22px 48px rgba(2, 6, 23, 0.28);
    padding: 0.75rem;
}

.checkout-printer-paper {
    position: relative;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffefb 0%, #f6f1e7 100%);
    color: #171717;
    overflow: hidden;
    border: 1px dashed rgba(92, 74, 43, 0.28);
}

.checkout-printer-paper::before,
.checkout-printer-paper::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    height: 10px;
    background-image: radial-gradient(circle, rgba(148, 109, 39, 0.34) 2.5px, transparent 2.8px);
    background-size: 18px 10px;
    background-repeat: repeat-x;
    opacity: 0.7;
    pointer-events: none;
}

.checkout-printer-paper::before {
    top: 8px;
}

.checkout-printer-paper::after {
    bottom: 8px;
}

.checkout-printer-topline,
.checkout-printer-bottomline {
    height: 18px;
}

.checkout-printer-receipt .checkout-receipt-top {
    align-items: center;
    padding: 0.4rem 1rem 0.75rem;
    background: transparent;
    border-bottom: 1px dashed rgba(148, 109, 39, 0.32);
}

.checkout-printer-receipt .checkout-receipt-eyebrow {
    color: #7c5a27;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.18rem;
}

.checkout-printer-receipt .checkout-receipt-title {
    color: #1f1720;
    font-size: 1rem;
    font-weight: 800;
}

.checkout-printer-receipt .checkout-receipt-badge {
    min-height: 32px;
    padding: 0.38rem 0.82rem;
    background: linear-gradient(135deg, #ef4444 0%, #e11d48 100%);
    box-shadow: none;
    font-size: 0.74rem;
}

.checkout-printer-subhead {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0.85rem 1rem 0.1rem;
}

.checkout-printer-subhead > div {
    min-width: 0;
}

.checkout-printer-subhead small,
.checkout-printer-info-row span {
    display: block;
    margin-bottom: 0.24rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}



.checkout-printer-subhead strong {
    display: block;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.35;
    word-break: break-word;
}

.checkout-printer-receipt .checkout-receipt-body {
    padding: 0.45rem 1rem 1rem;
}

.checkout-printer-receipt .checkout-receipt-line {
    padding: 0.72rem 0;
    border-bottom: 1px dashed rgba(148, 109, 39, 0.32);
}

.checkout-printer-receipt .checkout-receipt-line-main strong {
    font-size: 0.92rem;
}

.checkout-printer-receipt .checkout-receipt-line-main span {
    font-size: 0.92rem;
    font-weight: 800;
}



.checkout-printer-receipt .checkout-receipt-divider {
    margin: 0.9rem 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(148, 109, 39, 0.42) 0 10px,
        transparent 10px 16px
    );
}

.checkout-printer-receipt .checkout-receipt-totals {
    gap: 0.55rem;
}

.checkout-printer-receipt .checkout-receipt-totals > div.is-total {
    margin-top: 0.15rem;
    padding-top: 0.68rem;
    border-top: 1px dashed rgba(148, 109, 39, 0.32);
    color: #1f1720;
}

.checkout-printer-receipt .checkout-receipt-totals > div.is-total strong {
    font-size: 1.06rem;
}

.checkout-printer-info-list {
    display: grid;
    gap: 0.7rem;
}

.checkout-printer-info-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0;
    border-bottom: 1px dashed rgba(148, 109, 39, 0.24);
}

.checkout-printer-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-printer-info-row.is-block {
    display: block;
}

.checkout-printer-info-row.is-block strong {
    display: block;
    line-height: 1.58;
    word-break: break-word;
}


.checkout-printer-footer {
    padding: 0.85rem 1rem 0;
    text-align: center;
    color: #6f5a3a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.checkout-printer-receipt .checkout-receipt-line-main strong,
.checkout-printer-receipt .checkout-receipt-line-main span,
.checkout-printer-receipt .checkout-receipt-totals > div strong,
.checkout-printer-subhead strong,
.checkout-printer-info-row strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body[data-front-theme='dark'] .checkout-printer-receipt {
    background: linear-gradient(180deg, rgba(6, 18, 36, 0.96) 0%, rgba(4, 10, 20, 1) 100%);
    border-color: rgba(91, 127, 180, 0.26);
}

body[data-front-theme='dark'] .checkout-printer-paper {
    background: linear-gradient(180deg, #fffefb 0%, #efe7d8 100%);
    border-color: rgba(148, 109, 39, 0.34);
}

body[data-front-theme='dark'] .checkout-printer-footer {
    color: #725d3e;
}

body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-title,
body[data-front-theme='dark'] .checkout-printer-subhead strong,
body[data-front-theme='dark'] .checkout-printer-info-row strong,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-line-main strong,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-line-main span,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-totals > div strong,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-totals > div.is-total {
    color: #19130f;
}

body[data-front-theme='dark'] .checkout-printer-subhead small,
body[data-front-theme='dark'] .checkout-printer-info-row span,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-empty,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-line-complements li,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-line-note,
body[data-front-theme='dark'] .checkout-printer-receipt .checkout-receipt-totals > div {
    color: #5b4834;
}

@media (max-width: 575.98px) {
    .checkout-printer-subhead {
        grid-template-columns: 1fr;
    }

    .checkout-printer-info-row {
        flex-direction: column;
        gap: 0.28rem;
    }
}

/* Ajuste fino do recibo final estilo mini impressora */
.checkout-printer-receipt {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 26px;
}

.checkout-printer-paper {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 12px 22px rgba(92, 74, 43, 0.08);
}

.checkout-printer-receipt .checkout-receipt-top {
    padding: 0.45rem 1rem 0.82rem;
}

.checkout-printer-receipt .checkout-receipt-title {
    letter-spacing: 0.01em;
}

.checkout-printer-receipt .checkout-receipt-badge {
    background: #17120f;
    color: #fffdf8;
    border: none;
    min-height: 30px;
    padding: 0.32rem 0.78rem;
}

.checkout-printer-receipt .checkout-receipt-line-complements li,
.checkout-printer-receipt .checkout-receipt-line-note,
.checkout-printer-receipt .checkout-receipt-empty,
.checkout-printer-receipt .checkout-receipt-totals > div,
.checkout-printer-info-row strong,
.checkout-printer-subhead strong {
    line-height: 1.45;
}

.checkout-printer-info-row.is-block strong {
    font-size: 0.93rem;
}

@media (max-width: 575.98px) {
    .checkout-printer-receipt {
        max-width: 100%;
    }
}
