/* =========================================================
   REGGAE BURGUER — CARDÁPIO COMPLETO
   Reaproveita os tokens visuais do site principal.
========================================================= */
:root {
    --black-piano: #0b0a08;
    --charcoal: #17140f;
    --charcoal-2: #1e1a13;
    --cream: #f3ead8;
    --cream-dim: #cfc6b0;
    --gold: #e8b400;
    --gold-soft: #f2cf5c;
    --jade: #146a3d;
    --jade-deep: #0c4527;
    --ember: #c62828;
    --ember-deep: #8f1f1f;

    --font-display: 'Anton', sans-serif;
    --font-serif: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }

body {
    background-color: var(--black-piano);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.highlight-yellow { color: var(--gold); }

/* =========================================================
   HEADER
========================================================= */
.shop-header {
    position: sticky;
    top: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    background: rgba(11,10,8,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232,180,0,0.15);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}
.back-link:hover { color: var(--gold); }

.shop-brand { display: flex; align-items: center; gap: 10px; }
.shop-logo { height: 40px; border-radius: 50%; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.82rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cart-toggle {
    position: relative;
    background: linear-gradient(135deg, var(--charcoal-2), var(--black-piano));
    border: 1px solid rgba(232,180,0,0.35);
    color: var(--gold-soft);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.28s ease;
}
.cart-toggle:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black-piano);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(232, 180, 0, 0.35);
}
.cart-toggle:active {
    transform: translateY(0) scale(0.98);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--ember), var(--ember-deep));
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 19px;
    height: 19px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    border: 1.5px solid var(--black-piano);
    transition: transform 0.2s ease;
}
.cart-badge.pulse { animation: badge-pulse 0.4s ease; }
@keyframes badge-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }

/* =========================================================
   HERO
========================================================= */
.shop-hero {
    text-align: center;
    padding: 60px 5% 40px;
    background: radial-gradient(ellipse at 50% 0%, rgba(20,106,61,0.18), transparent 60%);
}
.eyebrow {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--gold-soft);
    border-left: 3px solid var(--ember);
    padding-left: 12px;
    margin-bottom: 18px;
}
.shop-hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.shop-hero p {
    color: var(--cream-dim);
    max-width: 460px;
    margin: 0 auto 16px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
}

.disclaimer-wrapper {
    margin-bottom: 24px;
}
.disclaimer-badge {
    display: inline-block;
    font-size: 0.76rem;
    color: var(--cream-dim);
    font-style: italic;
    letter-spacing: 0.02em;
    padding: 4px 14px;
    background: rgba(243, 234, 216, 0.05);
    border: 1px solid rgba(243, 234, 216, 0.12);
    border-radius: 20px;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.category-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 10px 20px;
    border: 1px solid rgba(243,234,216,0.18);
    border-radius: 30px;
    transition: all 0.3s ease;
}
.category-nav a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232,180,0,0.08);
}

/* =========================================================
   SECTIONS
========================================================= */
.shop-section { padding: 60px 0; border-top: 1px solid rgba(243,234,216,0.06); }
.shop-section:first-of-type { border-top: none; }

.section-heading { margin-bottom: 34px; text-align: left; }
.section-heading h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.section-heading p { color: var(--cream-dim); font-size: 0.92rem; }

/* --- Grid de lanches (2xN) --- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.product-card {
    background: var(--charcoal);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }

.product-media { aspect-ratio: 4 / 3; background: var(--charcoal-2); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.product-body > p {
    color: var(--cream-dim);
    font-size: 0.87rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.price-row {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: var(--charcoal-2);
    border-radius: 6px;
}
.price-option-label { display: flex; flex-direction: column; }
.price-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cream-dim);
}
.price-value {
    font-family: var(--font-display);
    color: var(--gold-soft);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

/* --- Stepper (- qty +) --- */
.stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black-piano);
    border-radius: 20px;
    padding: 4px;
}
.stepper button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}
.stepper button:hover { background: var(--gold); color: var(--black-piano); }
.stepper .step-plus { background: var(--jade); color: var(--cream); }
.stepper .step-plus:hover { background: var(--gold); color: var(--black-piano); }
.stepper .step-qty {
    min-width: 18px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-display);
}

/* --- Grid de adicionais / acompanhamentos / bebidas --- */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.addon-card {
    background: var(--charcoal);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.addon-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }

.addon-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    overflow: hidden;
    background: var(--charcoal-2);
    flex-shrink: 0;
}
.addon-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-media.addon-media-empty {
    background: linear-gradient(135deg, var(--jade-deep), var(--charcoal-2));
}
.addon-media.addon-media-empty img { display: none; }

.addon-info { display: flex; flex-direction: column; gap: 4px; padding: 18px 18px 4px; }
.addon-info h4 { font-size: 1rem; font-weight: 700; }
.addon-info small { color: var(--cream-dim); font-size: 0.78rem; }
.addon-price {
    font-family: var(--font-display);
    color: var(--gold-soft);
    font-size: 1rem;
    margin-top: 2px;
}

.addon-pending {
    color: var(--cream-dim);
    font-style: italic;
    font-size: 0.78rem;
    margin-top: 2px;
}

.addon-card > .stepper {
    align-self: flex-start;
    margin: 12px 18px 18px;
}

/* =========================================================
   FOOTER
========================================================= */
.shop-footer {
    text-align: center;
    padding: 40px 20px 70px;
    color: #6b675c;
    font-size: 0.85rem;
}
.shop-disclaimer {
    font-size: 0.8rem;
    color: #8c8677;
    font-style: italic;
    margin-bottom: 8px;
}
.shop-footer a { color: var(--gold-soft); text-decoration: none; }
.shop-footer a:hover { text-decoration: underline; }

/* =========================================================
   CARRINHO (drawer)
========================================================= */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 900;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(420px, 92vw);
    background: var(--charcoal);
    border-left: 1px solid rgba(232,180,0,0.2);
    z-index: 950;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(243,234,216,0.08);
}
.cart-drawer-header h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: uppercase;
}
.cart-close {
    background: rgba(243, 234, 216, 0.05);
    border: 1px solid rgba(243, 234, 216, 0.12);
    color: var(--cream-dim);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}
.cart-close:hover {
    background: rgba(232, 180, 0, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-empty { color: var(--cream-dim); font-size: 0.9rem; text-align: center; margin-top: 40px; }

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(243,234,216,0.08);
}
.cart-item-media {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--charcoal-2);
    border: 1px solid rgba(243, 234, 216, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-media.addon-media-empty {
    background: linear-gradient(135deg, var(--jade-deep), var(--charcoal-2));
}
.cart-item-media.addon-media-empty img { display: none; }

.cart-item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.cart-item-info span.name { font-weight: 700; font-size: 0.92rem; }
.cart-item-info span.unit-price { color: var(--cream-dim); font-size: 0.78rem; }
.cart-item-addons-summary {
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-style: italic;
}

.cart-item-bread {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}
.bread-select {
    background: var(--black-piano);
    color: var(--cream);
    border: 1px solid rgba(243,234,216,0.18);
    border-radius: 20px;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    cursor: pointer;
}
.bread-select:focus { outline: none; border-color: var(--gold); }
.bread-select.invalid { border-color: var(--ember); box-shadow: 0 0 0 1px var(--ember); }
.bread-warning {
    color: var(--ember);
    font-size: 0.72rem;
    font-weight: 700;
}

.cart-item-obs {
    margin-top: 6px;
    width: 100%;
}
.obs-input {
    width: 100%;
    background: var(--black-piano);
    color: var(--cream);
    border: 1px solid rgba(243,234,216,0.18);
    border-radius: 4px;
    padding: 6px 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.obs-input::placeholder {
    color: rgba(207,198,176,0.5);
    font-size: 0.74rem;
    font-style: italic;
}
.obs-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.cart-item-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}
.cart-item-addons-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(232, 180, 0, 0.08);
    border: 1px solid rgba(232, 180, 0, 0.28);
    color: var(--gold-soft);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cart-item-addons-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black-piano);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(232, 180, 0, 0.28);
}
.cart-item-addons-btn:active {
    transform: translateY(0);
}

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(243, 234, 216, 0.03);
    border: 1px solid rgba(243, 234, 216, 0.08);
    color: #e57373;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cart-item-remove:hover {
    background: rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.35);
    color: #ff8a80;
    transform: translateY(-1px);
}
.cart-item-remove:active {
    transform: translateY(0);
}

.cart-alert {
    background: rgba(198,40,40,0.15);
    border: 1px solid rgba(198,40,40,0.4);
    color: var(--cream);
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 6px;
}

/* =========================================================
   POPUP DE ADICIONAIS
========================================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.addons-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    width: min(440px, 90vw);
    max-height: 82vh;
    background: var(--charcoal);
    border: 1px solid rgba(232,180,0,0.25);
    border-radius: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.addons-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.addons-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(243,234,216,0.08);
}
.addons-modal-eyebrow {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream-dim);
    margin-bottom: 4px;
}
.addons-modal-header h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.2rem;
}

.addons-modal-list {
    overflow-y: auto;
    padding: 10px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.addon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(243,234,216,0.06);
}

.addon-row-media {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--charcoal-2);
    flex-shrink: 0;
}
.addon-row-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-row-media.addon-media-empty {
    background: linear-gradient(135deg, var(--jade-deep), var(--charcoal-2));
}
.addon-row-media.addon-media-empty img { display: none; }

.addon-row-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.addon-row-info span.name { font-weight: 600; font-size: 0.9rem; }
.addon-row-info span.price { color: var(--gold-soft); font-size: 0.78rem; font-family: var(--font-display); }

.addons-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 22px;
    border-top: 1px solid rgba(243,234,216,0.08);
    font-family: var(--font-display);
    color: var(--gold-soft);
    font-size: 1rem;
}

.addons-modal-done {
    margin: 0 22px 20px;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .container { padding-left: 4.5%; padding-right: 4.5%; }
    .shop-header { padding: 10px 4.5%; gap: 12px; }
    .shop-brand { gap: 7px; }
    .shop-logo { width: 36px; height: 36px; }
    .brand-name { font-size: 0.72rem; }
    .back-link { font-size: 0.75rem; }
    .back-link span { display: none; }
    .cart-toggle { width: 44px; height: 44px; flex-shrink: 0; }

    .shop-hero { padding: 38px 4.5% 28px; }
    .shop-hero h1 { font-size: clamp(2rem, 11vw, 3rem); line-height: 1; }
    .shop-hero p { font-size: 0.95rem; margin-bottom: 24px; }
    .category-nav { gap: 8px; }
    .category-nav a { padding: 10px 14px; font-size: 0.72rem; }

    .shop-section { padding: 42px 0; }
    .section-heading { margin-bottom: 22px; }
    .section-heading h2 { font-size: 2rem; }
    .section-heading p { font-size: 0.86rem; }
    .product-grid { grid-template-columns: 1fr; gap: 18px; }
    .addon-grid { grid-template-columns: 1fr; gap: 10px; }

    .product-body { padding: 18px 16px 20px; }
    .product-body h3 { font-size: 1.2rem; }
    .price-option { align-items: stretch; padding: 10px; }
    .price-option-label { flex: 1; min-width: 0; justify-content: center; }
    .price-label { line-height: 1.25; }
    .stepper { flex-shrink: 0; }

    .addon-info { padding: 14px 14px 4px; }
    .addon-info h4 { font-size: 0.9rem; line-height: 1.25; }
    .addon-card > .stepper { margin: 10px 14px 14px; }

    .cart-drawer { width: min(100vw, 420px); }
    .cart-drawer-header { padding: 18px 16px; }
    .cart-items { padding: 14px 16px; }
    .cart-footer { padding: 16px 16px 20px; }
    .cart-item-actions { gap: 10px; flex-wrap: wrap; }

    .addons-modal { width: min(94vw, 440px); max-height: 88vh; }
    .addons-modal-header { padding: 16px; }
    .addons-modal-list { padding: 8px 16px; }
    .addons-modal-footer { padding: 12px 16px; }
    .addons-modal-done { margin: 0 16px 16px; }
}

.cart-footer {
    padding: 20px 24px 26px;
    border-top: 1px solid rgba(243,234,216,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media screen and (max-width: 380px) {
    .brand-name { display: none; }
    .shop-hero { padding-top: 30px; }
    .category-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 2px 2px 8px; }
    .category-nav a { flex: 0 0 auto; }
    .price-option { gap: 8px; }
    .price-label { font-size: 0.64rem; }
    .price-value { font-size: 0.95rem; }
    .stepper { gap: 6px; }
    .stepper button { width: 30px; height: 30px; }
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-soft);
}

.btn-primary {
    background: linear-gradient(135deg, #188049 0%, #0e502c 100%);
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(18, 99, 61, 0.35);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    cursor: pointer;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1ea365 0%, #12633d 100%);
    color: #ffffff;
    box-shadow: 0 6px 22px rgba(20, 114, 70, 0.52);
    transform: translateY(-2px);
}
.btn-primary:active {
    transform: translateY(0);
}

.cart-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #198754 0%, #105934 100%);
    color: #ffffff;
    padding: 15px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 6px 20px rgba(16, 89, 52, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.cart-checkout::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}
.cart-checkout:hover {
    background: linear-gradient(135deg, #209f62 0%, #13693e 100%);
    color: #ffffff;
    box-shadow: 0 8px 26px rgba(19, 105, 62, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.cart-checkout:hover::after {
    left: 150%;
}
.cart-checkout:active {
    transform: translateY(0);
}
.cart-checkout.disabled {
    opacity: 0.4;
    pointer-events: none;
    box-shadow: none;
    filter: grayscale(50%);
}
.cart-checkout .wpp-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

.cart-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: rgba(198, 40, 40, 0.06);
    border: 1px solid rgba(198, 40, 40, 0.22);
    color: #f87171;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cart-clear:hover {
    background: rgba(198, 40, 40, 0.16);
    border-color: rgba(198, 40, 40, 0.45);
    color: #fca5a5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.15);
}
.cart-clear:active {
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media screen and (max-width: 760px) {
    .product-grid { grid-template-columns: 1fr; }
    .addon-grid { grid-template-columns: 1fr; }
    .shop-hero { padding: 40px 5% 30px; }
    .shop-header { padding: 12px 5%; }
    .back-link span { display: none; }
}

.lanche-thumb {
    width: 100%;          /* Faz a imagem ocupar toda a largura do card */
    max-height: 220px;    /* Define uma altura máxima padrão */
    object-fit: cover;    /* Corta e ajusta a imagem sem distorcê-la */
    border-radius: 4px;   /* Deixa as bordas levemente arredondadas combinando com o tema */
    display: block;
    margin-bottom: 15px;  /* Espaçamento entre a imagem e o nome do lanche */
}