/* Loja - Front-end do Cliente */

.loja-page {
    background-color: #f8f9fa;
}

/* Header da Loja */
.loja-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50; /* Z-index baixo para não interferir no menu */
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    position: relative;
}

.loja-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
}

.loja-logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.header-info h1 {
    margin: 0 0 8px 0;
    color: var(--dark-color);
    font-size: 32px;
}

.header-info p {
    margin: 0 0 12px 0;
    color: var(--gray);
}

.header-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--gray);
}

/* Lanche do Dia */
.lanche-do-dia {
    padding: 40px 0;
    background: linear-gradient(135deg, #fff5e6, #ffe8cc);
}

.lanche-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    position: relative;
}

.lanche-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--warning-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.lanche-content {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.lanche-content img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.lanche-info {
    flex: 1;
}

.lanche-info h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.lanche-info p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.lanche-preco {
    margin-bottom: 30px;
}

/* Controles de quantidade no lanche do dia */
.lanche-info .produto-quantidade {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background: rgba(var(--primary-color-rgb, 231, 76, 60), 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.lanche-info .btn-qtd-produto {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.lanche-info .qtd-produto {
    font-size: 24px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.preco-original {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 15px;
}

.preco-promocional,
.preco {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
}

/* ================================
   MARMITEX DO DIA - CARDÁPIO
   ================================ */

section.marmitex-do-dia {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

section.marmitex-do-dia .marmitex-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0;
    position: relative;
}

/* Header do Cardápio */
.marmitex-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: white;
}

.marmitex-icon {
    font-size: 32px;
}

.marmitex-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
}

.marmitex-divider {
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f77737);
}

/* Conteúdo do Cardápio */
.marmitex-content {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.marmitex-imagem {
    flex-shrink: 0;
    width: 220px;
    max-width: 220px;
}

.marmitex-imagem img {
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.marmitex-placeholder-lg {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #ff6b35, #f77737);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

/* Detalhes do Marmitex */
.marmitex-detalhes {
    flex: 1;
}

.marmitex-nome {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.marmitex-desc {
    color: #666;
    font-size: 15px;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

/* Opções */
.marmitex-opcao {
    margin-bottom: 25px;
}

.marmitex-opcao h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

/* Botões de Tamanho */
.marmitex-tamanhos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-tamanho {
    padding: 14px 24px !important;
    border: 2px solid #ff6b35 !important;
    border-radius: 30px !important;
    background: white !important;
    color: #ff6b35 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15) !important;
    outline: none !important;
}

.btn-tamanho:hover {
    background: #fff5f0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25) !important;
}

.btn-tamanho.selected {
    background: linear-gradient(135deg, #ff6b35, #f77737) !important;
    color: white !important;
    border-color: #ff6b35 !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
}

/* Botões de Carne */
.marmitex-carnes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-carne {
    padding: 12px 20px !important;
    border: 2px solid #ddd !important;
    border-radius: 30px !important;
    background: white !important;
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    outline: none !important;
}

.btn-carne small {
    color: #888;
    font-size: 12px;
}

.btn-carne:hover {
    border-color: #ff6b35 !important;
    background: #fff5f0 !important;
}

.btn-carne.selected {
    border-color: #ff6b35 !important;
    background: linear-gradient(135deg, #ff6b35, #f77737) !important;
    color: white !important;
}

.btn-carne.selected small {
    color: rgba(255,255,255,0.9);
}

/* Checkboxes de Adicionais */
.marmitex-adicionais {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-adicional {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 18px !important;
    border: 2px solid #ddd !important;
    border-radius: 30px !important;
    background: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.btn-adicional input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2196F3;
    cursor: pointer;
}

.btn-adicional span {
    color: #333;
    font-weight: 500;
}

.btn-adicional small {
    color: #888;
    font-size: 12px;
}

.btn-adicional:hover {
    border-color: #2196F3 !important;
    background: #e3f2fd !important;
}

.btn-adicional:has(input:checked) {
    border-color: #2196F3 !important;
    background: #2196F3 !important;
}

.btn-adicional:has(input:checked) span,
.btn-adicional:has(input:checked) small {
    color: white;
}

.btn-adicional:has(input:checked) input[type="checkbox"] {
    accent-color: white;
}

/* Footer com Total e Botão */
.marmitex-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.marmitex-total {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marmitex-total span {
    font-size: 18px;
    color: #666;
}

.marmitex-total strong {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
}

.btn-marmitex,
button.btn-marmitex {
    padding: 15px 40px !important;
    background: linear-gradient(135deg, #2196F3, #1976D2) !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4) !important;
}

.btn-marmitex:hover,
button.btn-marmitex:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5) !important;
}

.btn-marmitex:active,
button.btn-marmitex:active {
    transform: translateY(0) !important;
}

/* Status do Marmitex */
.marmitex-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.1));
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.marmitex-status .status-icon {
    font-size: 18px;
}

.marmitex-status .status-text {
    font-weight: 600;
    color: #2E7D32;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.marmitex-status.fechado {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(198, 40, 40, 0.1));
}

.marmitex-status.fechado .status-text {
    color: #c62828;
}

/* Responsivo Marmitex */
@media (max-width: 992px) {
    .marmitex-content {
        flex-direction: column;
        align-items: center;
    }
    
    .marmitex-imagem {
        width: 100%;
        max-width: 350px;
    }
    
    .marmitex-imagem img,
    .marmitex-placeholder-lg {
        height: 250px;
    }
    
    .marmitex-detalhes {
        text-align: center;
    }
    
    .marmitex-tamanhos,
    .marmitex-carnes,
    .marmitex-adicionais {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .marmitex-do-dia {
        padding: 20px 0;
    }
    
    .marmitex-header {
        padding: 15px 20px;
    }
    
    .marmitex-header h2 {
        font-size: 20px;
    }
    
    .marmitex-content {
        padding: 20px;
        gap: 20px;
    }
    
    .marmitex-imagem {
        max-width: 300px;
    }
    
    .marmitex-imagem img,
    .marmitex-placeholder-lg {
        height: 200px;
    }
    
    .marmitex-nome {
        font-size: 20px;
    }
    
    .marmitex-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-marmitex {
        width: 100%;
        padding: 16px !important;
    }
    
    .btn-tamanho {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
    
    .btn-carne {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    
    .btn-adicional {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .marmitex-header h2 {
        font-size: 16px;
    }
    
    .marmitex-icon {
        font-size: 22px;
    }
    
    .marmitex-imagem {
        max-width: 100%;
    }
    
    .marmitex-imagem img,
    .marmitex-placeholder-lg {
        height: 180px;
    }
    
    .marmitex-placeholder-lg {
        font-size: 50px;
    }
    
    .marmitex-total strong {
        font-size: 24px;
    }
    
    .btn-tamanho {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
    
    .btn-carne {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .btn-adicional {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .btn-adicional input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

/* Destaques */
.destaques-section {
    padding: 60px 0;
}

.destaques-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--dark-color);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.produto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.produto-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.produto-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.produto-card h3 {
    padding: 15px 20px 5px 20px;
    margin: 0;
    font-size: 20px;
    color: var(--dark-color);
}

.produto-card p {
    padding: 0 20px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.produto-preco {
    padding: 10px 20px;
}

.produto-card .btn {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
}

/* Controles de quantidade nos produtos em destaque */
.produto-card .produto-quantidade {
    display: flex;
    justify-content: center;
    margin: 0 20px 20px 20px;
    background: rgba(var(--primary-color-rgb, 231, 76, 60), 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    width: calc(100% - 40px);
}

.produto-card .btn-qtd-produto {
    width: 35px;
    height: 35px;
    font-size: 18px;
}

.produto-card .qtd-produto {
    font-size: 20px;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
}

/* Cardápio */
.cardapio-section {
    padding: 60px 0;
    background: white;
}

.cardapio-section > .container > h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--dark-color);
}

/* Navegação de Categorias */
.categorias-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow-x: auto;
    position: static;
}

.categoria-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--dark-color);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    font-size: 15px;
}

.categoria-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.categoria-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.categoria-link {
    padding: 12px 25px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.categoria-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Categoria Section */
.categoria-section {
    margin-bottom: 50px;
    scroll-margin-top: 220px;
}

.categoria-section h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.categoria-descricao {
    color: var(--gray);
    margin-bottom: 25px;
}

/* Lista de Produtos */
.produtos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.produto-item {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s;
    align-items: center;
}

.produto-item:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.produto-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.produto-placeholder-sm {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.produto-info {
    flex: 1;
}

.produto-info h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: var(--dark-color);
}

.produto-info p {
    margin: 0 0 12px 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Carrinho Flutuante */
.carrinho-flutuante {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 380px;
    max-height: 600px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    z-index: 200;
    display: flex;
    flex-direction: column;
}

.carrinho-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.carrinho-header h3 {
    margin: 0;
    color: var(--dark-color);
}

.carrinho-itens {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 400px;
}

.carrinho-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.carrinho-item-info {
    flex: 1;
}

.carrinho-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--dark-color);
}

.carrinho-item-info p {
    margin: 0;
    font-size: 12px;
    color: var(--gray);
}

.carrinho-item-preco {
    font-weight: bold;
    color: var(--primary-color);
}

.carrinho-item-qtd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.carrinho-item-qtd button {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.carrinho-total {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
}

.carrinho-total span {
    color: var(--primary-color);
}

.carrinho-flutuante .btn {
    margin: 0 20px 20px 20px;
}

/* Carrinho Flutuante do Lado Direito */
.carrinho-flutuante-lateral {
    position: fixed;
    bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    display: none;
    animation: pulse 2s infinite;
}

.carrinho-flutuante-lateral:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(230, 57, 70, 0.8);
    }
    100% {
        box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
    }
}

.carrinho-lateral-content {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.carrinho-lateral-icon {
    font-size: 32px;
    color: white;
}

.carrinho-lateral-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--warning-color);
    color: var(--dark-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.carrinho-lateral-total {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    letter-spacing: 0.2px;
}

/* Botões de Quantidade no Carrinho */
.carrinho-item-qtd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-qtd {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-minus {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.btn-plus {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.btn-qtd:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.qtd-display {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.item-subtotal {
    margin-left: auto;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Spinner para loading */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Opções de Tipo de Pedido no Checkout */
.tipo-pedido-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.tipo-pedido-card {
    flex: 1;
    cursor: pointer;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.tipo-pedido-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}

.tipo-pedido-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tipo-pedido-card input[type="radio"]:checked + .tipo-pedido-content {
    color: var(--primary-color);
}

.tipo-pedido-card input[type="radio"]:checked {
    & ~ .tipo-pedido-content::before {
        content: "✓";
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary-color);
        color: white;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }
}

.tipo-pedido-card input[type="radio"]:checked ~ .tipo-pedido-content {
    border-color: var(--primary-color);
}

.tipo-pedido-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.tipo-pedido-icon {
    font-size: 32px;
}

.tipo-pedido-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.tipo-pedido-info small {
    color: #666;
    font-size: 12px;
}

/* Animações para checkout */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
}

/* Estado selecionado dos cards */
.tipo-pedido-card.selected {
    border-color: var(--primary-color) !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2) !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Botões de Quantidade nos Cards dos Produtos */
.produto-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.produto-quantidade {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-qtd-produto {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-minus-produto {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.btn-plus-produto {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.btn-qtd-produto:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.qtd-produto {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 25px;
    text-align: center;
}

/* Animação para transição entre botão adicionar e quantidade */
.produto-actions {
    position: relative;
    min-height: 40px;
}

.produto-quantidade {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsividade para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .produto-item img,
    .produto-placeholder-sm {
        width: 100px;
        height: 100px;
    }
    
    .produto-placeholder-sm {
        font-size: 40px;
    }
}

/* Responsividade para botões nos cards */
@media (max-width: 768px) {
    .btn-qtd-produto {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .qtd-produto {
        font-size: 18px;
        min-width: 30px;
    }
    
    .produto-quantidade {
        padding: 8px 12px;
    }
}

/* Menu Hambúrguer - FORÇAR CLIQUES */
.menu-hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,255,255,0.9) !important; /* Fundo semi-transparente */
    border: 2px solid var(--primary-color) !important; /* Borda visível */
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 10px !important;
    margin-left: auto;
    z-index: 9999 !important; /* Z-index extremamente alto */
    position: relative !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    min-width: 44px; /* Área mínima de toque */
    min-height: 44px; /* Área mínima de toque */
}

.menu-hamburger:hover {
    background: var(--primary-color) !important;
    transform: scale(1.05) !important;
}

.menu-hamburger:active {
    transform: scale(0.95) !important;
    background: var(--secondary-color) !important;
}

.menu-hamburger span {
    width: 20px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s;
    display: block !important;
    pointer-events: none;
}

.menu-hamburger:hover span {
    background-color: white !important;
}

.menu-hamburger.active {
    background: var(--primary-color) !important;
}

.menu-hamburger.active span {
    background-color: white !important;
}

.menu-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Mobile - Sem Overlay de Proteção */
.menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -8px 0 25px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

.menu-mobile.show {
    right: 0;
}

.menu-mobile-content {
    padding: 25px;
}

.menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--gray);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10001; /* Acima de tudo */
    pointer-events: auto;
}

.menu-close:hover {
    color: var(--primary-color);
    background: #f8f9fa;
    transform: scale(1.1);
}

.menu-close:active {
    transform: scale(0.9);
}

.menu-mobile h3 {
    margin: 30px 0 20px 0;
    color: var(--dark-color);
    font-size: 24px;
}

.menu-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-mobile-list li {
    margin-bottom: 10px;
}

.menu-mobile-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s;
}

.menu-mobile-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.menu-icon {
    font-size: 24px;
}

.menu-mobile-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--gray);
}

.menu-mobile-footer p {
    margin: 8px 0;
}

/* Overlay para o menu - DESABILITADO */
.menu-overlay {
    display: none !important; /* Overlay completamente removido */
}

.menu-overlay.show {
    display: none !important; /* Garantir que nunca apareça */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsivo Loja - Header Compacto e Menu Funcional */
@media (max-width: 768px) {
    /* Reduzir espaçamento lateral geral */
    .container {
        padding: 0 10px;
    }
    
    .cardapio-section {
        padding: 30px 0;
    }
    
    .header-content {
        flex-direction: row;
        flex-wrap: nowrap;
        text-align: left;
        gap: 10px;
        padding: 6px 0;
    }
    
    .header-info {
        flex: 1;
        min-width: 150px;
    }
    
    .header-info h1 {
        font-size: 18px;
    }
    
    .header-info p {
        font-size: 12px;
    }
    
    .header-meta {
        font-size: 11px;
        gap: 8px;
    }
    
    .loja-logo,
    .loja-logo-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .loja-logo-placeholder {
        font-size: 20px;
    }
    
    /* Menu hambúrguer ainda mais visível em mobile */
    .menu-hamburger {
        background: var(--primary-color) !important;
        border: 3px solid white !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    }
    
    .menu-hamburger span {
        background-color: white !important;
    }
    
    .lanche-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .lanche-content img {
        width: 100%;
        height: auto;
    }
    
    .lanche-info h2 {
        font-size: 28px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .produto-item {
        flex-direction: row;
        padding: 12px;
        gap: 12px;
        margin: 0 5px 15px 5px;
    }
    
    .produto-item img,
    .produto-placeholder-sm {
        width: 80px;
        height: 80px;
    }
    
    /* Ajustar preços em mobile */
    .produto-preco .preco,
    .produto-preco .preco-promocional {
        font-size: 16px;
    }
    
    .produto-preco .preco-original {
        font-size: 14px;
    }
    
    /* Botões menores nos cards */
    .produto-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 70px;
    }
    
    .btn-qtd-produto {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .qtd-produto {
        font-size: 14px;
        min-width: 20px;
    }
    
    .produto-quantidade {
        padding: 4px 8px;
    }
    
    .carrinho-flutuante {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
    
    .carrinho-flutuante-lateral {
        width: 65px;
        height: 65px;
        right: 10px;
        bottom: calc(36px + env(safe-area-inset-bottom, 0px));
    }

    .categorias-nav {
        top: 100px;
    }
}

@media (max-width: 480px) {
    /* Espaçamento ainda mais compacto */
    .container {
        padding: 0 8px;
    }
    
    /* Imagens ainda menores em dispositivos muito pequenos */
    .produto-item img,
    .produto-placeholder-sm {
        width: 60px;
        height: 60px;
    }
    
    .produto-placeholder-sm {
        font-size: 25px;
    }
    
    .produto-info h4 {
        font-size: 14px;
        margin: 0 0 4px 0;
    }
    
    .produto-info p {
        font-size: 11px;
        margin: 0 0 8px 0;
    }
    
    .produto-preco .preco,
    .produto-preco .preco-promocional {
        font-size: 14px;
    }
    
    .produto-preco .preco-original {
        font-size: 12px;
    }
    
    .produto-item {
        padding: 10px;
        gap: 10px;
        margin: 0 2px 12px 2px;
    }
    
    /* Botões ainda menores */
    .produto-actions .btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 60px;
    }
    
    .btn-qtd-produto {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .qtd-produto {
        font-size: 12px;
        min-width: 18px;
    }
    
    .produto-quantidade {
        padding: 3px 6px;
    }
    
    /* Checkout responsivo */
    .tipo-pedido-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .tipo-pedido-card {
        padding: 15px;
    }
    
    .tipo-pedido-icon {
        font-size: 24px;
    }
    
    .tipo-pedido-info strong {
        font-size: 14px;
    }
    
    .tipo-pedido-info small {
        font-size: 11px;
    }
    
    .header-content {
        gap: 8px;
        padding: 4px 0;
    }
    
    .loja-logo,
    .loja-logo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .loja-logo-placeholder {
        font-size: 18px;
    }
    
    .header-info h1 {
        font-size: 16px;
    }
    
    .header-info p {
        font-size: 11px;
    }
    
    .header-meta {
        font-size: 10px;
        gap: 6px;
    }
    
    .menu-hamburger {
        padding: 8px !important;
        min-width: 40px;
        min-height: 40px;
    }
    
    .menu-hamburger span {
        width: 18px;
    }
    
    .menu-mobile {
        width: 100%;
        max-width: none;
    }
    
    .carrinho-flutuante-lateral {
        width: 60px;
        height: 60px;
        right: 8px;
        bottom: calc(34px + env(safe-area-inset-bottom, 0px));
    }

    .carrinho-lateral-content {
        padding: 10px 6px;
    }

    .carrinho-lateral-icon {
        font-size: 20px;
    }
}

/* Barra de Informações do Restaurante */
.restaurant-info-bar {
    background: linear-gradient(135deg, #ff6b35, #f77737);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.restaurant-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.restaurant-address,
.restaurant-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.info-icon {
    font-size: 16px;
    opacity: 0.9;
}

.info-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.restaurant-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.status-badge.aberto {
    background: #fff;
    border: 2px solid #28a745;
    color: #28a745;
    animation: none;
}

.status-badge.fechado {
    background: #fff;
    border: 2px solid #dc3545;
    color: #dc3545;
    animation: none;
}

.status-badge.fechado .status-text {
    font-size: 0.9em;
    line-height: 1.2;
    text-align: center;
}

.status-badge.carregando {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    color: #ffc107;
}

.status-icon {
    font-size: 16px;
}

.status-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive para barra de informações */
@media (max-width: 768px) {
    .restaurant-info-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .restaurant-address,
    .restaurant-hours {
        min-width: auto;
        justify-content: center;
    }
    
    .restaurant-status {
        justify-content: center;
    }
    
    .status-badge {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .info-text {
        font-size: 13px;
        text-align: center;
    }
}

/* =====================================================
   CATEGORIA DE MARMITEX NO CARDÁPIO
   ===================================================== */

.categoria-marmitex {
    background: linear-gradient(135deg, #ff6b35, #f77737) !important;
    color: white !important;
    border-color: #ff6b35 !important;
}

.categoria-marmitex:hover {
    background: linear-gradient(135deg, #e55a2b, #d96530) !important;
}

.categoria-marmitex-section {
    background: linear-gradient(135deg, #fff8f5, #fff0eb);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid #ffcdb8;
}

.categoria-marmitex-section h3 {
    color: #ff6b35;
    border-bottom: 2px solid #ffcdb8;
    padding-bottom: 10px;
}

.marmitex-item {
    border: 2px solid #ffcdb8 !important;
    background: white !important;
}

.marmitex-item:hover {
    border-color: #ff6b35 !important;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2) !important;
}

.btn-escolher-marmitex {
    background: linear-gradient(135deg, #ff6b35, #f77737) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.btn-escolher-marmitex:hover {
    background: linear-gradient(135deg, #e55a2b, #d96530) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
}

/* =====================================================
   MODAL DE MARMITEX
   ===================================================== */

.modal-marmitex {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-marmitex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-marmitex-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-marmitex-header {
    background: linear-gradient(135deg, #ff6b35, #f77737);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-marmitex-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.modal-marmitex-header .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-marmitex-header .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-marmitex-body {
    padding: 25px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

/* Info do Prato no Modal */
.marmitex-prato-info {
    display: flex;
    gap: 15px;
    align-items: center;
    background: linear-gradient(135deg, #fff8f5, #fff0eb);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #ffcdb8;
}

.marmitex-prato-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.prato-detalhes h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.prato-detalhes p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Grid de Tamanhos no Modal */
.modal-tamanhos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.btn-tamanho-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tamanho-modal .tamanho-nome {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.btn-tamanho-modal .tamanho-preco {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 700;
}

.btn-tamanho-modal:hover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.btn-tamanho-modal.selected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f77737);
}

.btn-tamanho-modal.selected .tamanho-nome,
.btn-tamanho-modal.selected .tamanho-preco {
    color: white;
}

.marmitex-info-selecionado {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff8f5, #fff0eb);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #ffcdb8;
}

.badge-tamanho {
    background: linear-gradient(135deg, #ff6b35, #f77737);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
}

.preco-base {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b35;
}

.modal-marmitex-section {
    margin-bottom: 20px;
}

.modal-marmitex-section h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.modal-carnes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-carne-modal {
    padding: 12px 18px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-carne-modal small {
    color: #888;
    font-size: 12px;
}

.btn-carne-modal:hover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.btn-carne-modal.selected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f77737);
    color: white;
}

.btn-carne-modal.selected small {
    color: rgba(255, 255, 255, 0.9);
}

.modal-adicionais-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-adicional-modal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-adicional-modal input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2196F3;
    cursor: pointer;
}

.btn-adicional-modal span {
    color: #333;
    font-weight: 500;
}

.btn-adicional-modal small {
    color: #888;
    font-size: 12px;
    margin-left: auto;
}

.btn-adicional-modal:hover {
    border-color: #2196F3;
    background: #e3f2fd;
}

.btn-adicional-modal:has(input:checked) {
    border-color: #2196F3;
    background: #2196F3;
}

.btn-adicional-modal:has(input:checked) span,
.btn-adicional-modal:has(input:checked) small {
    color: white;
}

/* Acompanhamentos da Marmita */
.acompanhamento-section {
    background: #fafafa;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px !important;
}

.acompanhamento-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.obrigatorio-badge {
    background: #ff6b35;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.max-escolhas {
    color: #888;
    font-weight: normal;
    font-size: 12px !important;
}

.acomp-descricao {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 13px;
}

.modal-acompanhamentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-acompanhamento {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 2px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-acompanhamento input[type="checkbox"] {
    display: none;
}

.btn-acompanhamento .acomp-nome {
    color: #333;
    font-weight: 500;
}

.btn-acompanhamento .acomp-preco {
    color: #888;
    font-size: 11px;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 10px;
}

.btn-acompanhamento:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
}

.btn-acompanhamento.selected {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-acompanhamento.selected .acomp-nome {
    color: white;
}

.btn-acompanhamento.selected .acomp-preco {
    background: rgba(255,255,255,0.2);
    color: white;
}

.btn-acompanhamento.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Detalhes da Marmita (itens inclusos) */
.marmitex-hint {
    margin: 0 0 10px 0;
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.marmitex-detalhes-grid,
.modal-detalhes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-detalhe-marmita {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 2px solid #4CAF50;
    border-radius: 20px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    color: white;
}

.btn-detalhe-marmita input[type="checkbox"] {
    display: none;
}

.btn-detalhe-marmita span {
    font-weight: 500;
}

.btn-detalhe-marmita.selected {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-detalhe-marmita:not(.selected) {
    border-color: #ddd;
    background: #f5f5f5;
    color: #999;
    text-decoration: line-through;
}

.btn-detalhe-marmita:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Acompanhamentos do Banner de Marmitex */
.acompanhamento-banner-section {
    margin-bottom: 15px;
}

.acomp-descricao-banner {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 13px;
}

.marmitex-acompanhamentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-acompanhamento-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-acompanhamento-banner input[type="checkbox"] {
    display: none;
}

.btn-acompanhamento-banner .acomp-nome {
    color: #333;
    font-weight: 500;
}

.btn-acompanhamento-banner .acomp-preco {
    color: #888;
    font-size: 11px;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 10px;
}

.btn-acompanhamento-banner:hover {
    border-color: #4CAF50;
    background: #f1f8e9;
}

.btn-acompanhamento-banner.selected {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-acompanhamento-banner.selected .acomp-nome {
    color: white;
}

.btn-acompanhamento-banner.selected .acomp-preco {
    background: rgba(255,255,255,0.2);
    color: white;
}

#marmitex-observacoes {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    resize: none;
    transition: border-color 0.3s;
}

#marmitex-observacoes:focus {
    outline: none;
    border-color: #ff6b35;
}

.modal-marmitex-footer {
    background: #f8f9fa;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.modal-total {
    display: flex;
    flex-direction: column;
}

.modal-total span {
    font-size: 13px;
    color: #666;
}

.modal-total strong {
    font-size: 26px;
    color: #ff6b35;
    font-weight: 700;
}

.btn-adicionar-marmitex {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 15px 30px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-adicionar-marmitex:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4) !important;
}

/* Responsivo Modal Marmitex */
@media (max-width: 600px) {
    .modal-marmitex-content {
        max-height: 95vh;
        border-radius: 15px 15px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
    }
    
    .modal-marmitex-header {
        padding: 15px 20px;
    }
    
    .modal-marmitex-header h3 {
        font-size: 18px;
    }
    
    .modal-marmitex-body {
        padding: 20px;
        max-height: calc(95vh - 180px);
    }
    
    .marmitex-prato-info {
        flex-direction: column;
        text-align: center;
    }
    
    .marmitex-prato-info img {
        width: 100px;
        height: 100px;
    }
    
    .modal-tamanhos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .btn-tamanho-modal {
        padding: 12px 8px;
    }
    
    .btn-tamanho-modal .tamanho-nome {
        font-size: 13px;
    }
    
    .btn-tamanho-modal .tamanho-preco {
        font-size: 12px;
    }
    
    .modal-carnes-grid,
    .modal-adicionais-grid {
        gap: 8px;
    }
    
    .btn-carne-modal,
    .btn-adicional-modal {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .modal-marmitex-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-adicionar-marmitex {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .modal-tamanhos-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-tamanho-modal {
        flex-direction: row;
        justify-content: space-between;
    }
}

