@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #FDFCFB;
    --bg-nude: #F9F4F1;
    --brand-rose: #C1384A;
    --text-primary: #3D1A1A;
    --text-accent: #C1384A;
    --text-muted: #545759;
    --border-color: #E6E0DA;
    --golden: #D4AF37;
    --deadline-bg: #8B1F2E;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Deadline Banner */
.deadline-banner {
    background-color: var(--deadline-bg);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('img/hero_namorados.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 20px;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #f1f1f1;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-logo {
    max-width: 290px;
    height: auto;
    margin-bottom: 18px;
}

.hero .cta-btn {
    border-color: white;
    color: white;
}

.hero .cta-btn:hover {
    background-color: white;
    color: var(--text-primary);
}

/* Authority Banner */
.authority-banner {
    background-color: var(--bg-nude);
    padding: 15px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}
.authority-banner .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-transform: uppercase;
}

/* Product Gallery */
.gallery {
    padding: 150px 0;
}

.product-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 200px;
}

.product-block.active {}

.product-block:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1.2;
    position: relative;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 4px;
    background: var(--bg-nude);
    filter: brightness(0.95);
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

/* ─── Carousel ─────────────────────────────────────────────────────────── */
.product-carousel {
    overflow: hidden;
    border-radius: 4px;
}
.product-carousel .carousel-track {
    display: flex;
    width: 100%;
    will-change: transform;
    backface-visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-carousel .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-nude);
}
.product-carousel .carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.82);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #3D1A1A;
    transition: background 0.2s, opacity 0.2s;
    padding: 0;
    user-select: none;
    touch-action: manipulation;
}
.carousel-arrow:hover { background: rgba(255, 255, 255, 1); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-dot.active {
    background: #fff;
}

.product-info {
    flex: 1;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-accent);
    margin-bottom: 15px;
    display: block;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-spec {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.product-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 450px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    display: block;
    color: var(--text-primary);
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid var(--text-primary);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn:hover {
    background-color: var(--text-primary);
    color: white;
}

/* Variant select */
.variant-select {
    width: 100%;
    padding: 12px 16px;
    margin: 12px 0;
    border: 1px solid #d6cfc8;
    background: #faf8f5;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #3a3028;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B4513' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.variant-select:focus {
    outline: none;
    border-color: var(--brand-rose);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-nude);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.faq-section .faq-intro {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .faq-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--brand-rose);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--brand-rose);
    transition: transform 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

/* Locations */
.locations {
    padding: 100px 0;
    text-align: center;
}

.location-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Cart Icon */
#cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--brand-rose);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
#cart-icon:hover {
    transform: scale(1.05);
}
#cart-icon span {
    background: white;
    color: var(--brand-rose);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.9rem;
}

#cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#cart-overlay.open {
    display: block; opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0; right: -450px; width: 400px; height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-nude);
}
.cart-header h2 { font-size: 1.5rem; margin: 0; }
.close-cart {
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted);
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}
.empty-cart { text-align: center; color: var(--text-muted); margin-top: 20px; font-style: italic; }

.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid var(--border-color);
}
.cart-item-info h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.cart-item-info p { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin: 0; }
.cart-controls { display: flex; align-items: center; gap: 10px; }
.cart-controls button {
    background: var(--bg-nude); border: 1px solid var(--border-color);
    width: 25px; height: 25px; border-radius: 50%; cursor: pointer; font-weight: bold; color: var(--text-primary);
}
.cart-controls button:hover { background: var(--brand-rose); color: white; border-color: var(--brand-rose); }

.cart-footer {
    padding: 20px 30px; background: white; border-top: 1px solid var(--border-color); box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
}
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-size: 1.3rem; margin-bottom: 15px; }

#min-order-msg {
    display: none;
    font-size: 0.8rem;
    color: var(--deadline-bg);
    background: #fdf0f2;
    padding: 10px 12px;
    border-left: 3px solid var(--deadline-bg);
    margin-bottom: 10px;
}

.btn-add-more {
    width: 100%; margin-top: 20px; padding: 15px; font-weight: bold;
    background: transparent; color: var(--brand-rose); border: 2px solid var(--brand-rose);
    cursor: pointer; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
    transition: 0.3s; font-family: 'Montserrat', sans-serif;
}
.btn-add-more:hover { background: var(--brand-rose); color: white; }

.btn-checkout-wa {
    width: 100%; margin-top: 10px; padding: 18px; font-weight: bold;
    background: #25D366; color: white; border: none; cursor: pointer;
    font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; transition: 0.3s;
}
.btn-checkout-wa:hover { background: #1fba58; }

/* Responsive */
@media (max-width: 1024px) {
    .product-block {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 120px;
    }
    .hero-title { font-size: 3rem; }
    .product-title { font-size: 2.2rem; }
    .authority-banner .container { gap: 10px; flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .cart-sidebar { width: 100%; right: -100%; }
    .container { padding: 0 20px; }
    .hero-title { font-size: 2.2rem; }
    .hero { background-image: url('img/hero_namorados_mobile.png'); }
}

/* ─── Bottom Sheet: Escolha do local ───────────────────────────────────── */
#store-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2100;
}
#store-overlay.open { display: block; }

#store-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px 24px 36px;
    z-index: 2101;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    max-width: 540px;
    margin: 0 auto;
}
#store-sheet.open { transform: translateY(0); }

.store-sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.store-sheet-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 6px;
}

.store-sheet-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.store-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.store-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    font-family: 'Montserrat', sans-serif;
}
.store-option:hover, .store-option:active {
    border-color: var(--brand-rose);
    background: var(--bg-nude);
    transform: scale(0.99);
}

.store-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.store-arrow {
    font-size: 1.1rem;
    color: var(--brand-rose);
}

.store-sheet-cancel {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin-top: 4px;
}

/* ─── Caixa Presente: opções por tamanho ───────────────────────────────── */
.product-options-list {
    list-style: none;
    margin: 16px 0 16px;
    padding: 0;
}

.product-options-list li {
    margin-bottom: 8px;
}

.option-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.option-label::before {
    content: '• ';
    color: var(--brand-rose);
}

.product-options-list small {
    display: block;
    font-size: 0.78rem;
    color: var(--brand-rose);
    margin-left: 14px;
    margin-top: 1px;
}

/* ─── Info de sabores no card (texto simples) ──────────────────────────── */
.flavor-text-info {
    margin: 0 0 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.flavor-text-info p { margin: 0; }
.flavor-text-info p + p { margin-top: 4px; }
.flavor-text-info strong { color: var(--text-primary); font-weight: 600; }

/* ─── Sabores no carrinho ───────────────────────────────────────────────── */
.cart-item-flavors {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 3px 0 4px;
    line-height: 1.5;
}

/* ─── Bottom Sheet de Sabores ───────────────────────────────────────────── */
#flavor-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2100;
}
#flavor-overlay.open { display: block; }

#flavor-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    z-index: 2101;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
#flavor-sheet.open { transform: translateY(0); }

.flavor-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 8px;
}

.flavor-sheet-footer {
    padding: 16px 24px 32px;
    border-top: 1px solid var(--border-color);
    background: white;
}

/* Grupo de sabores — Accordion */
.sheet-group {
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.sheet-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    background: var(--bg-nude);
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.sheet-group-header:active { background: #ede0d6; }

.sheet-group-header-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sheet-group-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.sheet-group-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s;
}

.sheet-group-chevron {
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: transform 0.25s;
    line-height: 1;
}

.sheet-group.expanded .sheet-group-chevron { transform: rotate(90deg); }

.sheet-group.complete .sheet-group-header { background: #f0f8f2; }
.sheet-group.complete .sheet-group-count { color: #2d8a4e; }

.sheet-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sheet-group.expanded .sheet-group-content {
    max-height: 800px;
    padding: 12px 16px 8px;
}

/* Dots de progresso */
.sheet-dots-row {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.sheet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.2s;
    flex-shrink: 0;
}

.sheet-dot.filled {
    background: var(--brand-rose);
}

/* Itens de sabor no sheet */
.sheet-flavor-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sheet-flavor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    transition: background 0.15s;
}

.sheet-flavor-item:hover { background: var(--bg-nude); }

.sheet-flavor-name {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

/* Stepper (compartilhado entre sheet e qualquer futuro uso) */
.sheet-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.stepper-btn {
    background: var(--bg-nude);
    border: 1px solid var(--border-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.stepper-btn:hover:not(:disabled) {
    background: var(--brand-rose);
    color: white;
    border-color: var(--brand-rose);
}

.stepper-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.stepper-value {
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

/* ─── Bag Builder Bottom Sheet ─────────────────────────────────────────── */
#bag-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2100;
}
#bag-overlay.open { display: block; }

#bag-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    z-index: 2101;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    padding-top: 20px;
}
#bag-sheet.open { transform: translateY(0); }

#bag-sheet .store-sheet-title,
#bag-sheet .store-sheet-subtitle { padding: 0 24px; }

.bag-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px 8px;
}

.bag-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-color);
}

.bag-item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bag-item-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.bag-item-price {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}

.bag-base-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid var(--border-color);
    margin-top: 4px;
}

/* Lista de itens no card do produto */
.bag-items-info {
    margin: 0 0 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.bag-items-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.bag-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bag-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid var(--border-color);
}

.bag-items-list li:last-child { border-bottom: none; }

.bag-items-list li span {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.bag-items-list li.bag-items-base { font-weight: 600; }
.bag-items-list li.bag-items-base span { color: var(--text-primary); font-weight: 600; }

.btn-checkout-wa:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.bag-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 14px;
}
