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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    padding-bottom: 70px; /* Espaço para o menu inferior */
    scroll-behavior: smooth;
}

/* Header do Produto */
.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 100;
}

.product-header-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-button {
    background: none;
    border: none;
    padding: 8px 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.back-button:active {
    opacity: 0.7;
}

.back-button svg {
    width: 24px;
    height: 24px;
}

.product-header-logo {
    background-color: #EA1D2C;
    border-radius: 50%;
    padding: 3px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-header-logo img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.product-header-center {
    flex: 1;
    text-align: left;
    padding-left: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-header-title {
    font-size: 16px;
    font-weight: 500;
    color: #3f3e3e;
    margin: 0;
    margin-bottom: 4px;
}

.product-header-center .min-order-row {
    display: flex;
    align-items: center;
    margin-top: 0;
    line-height: 1.2;
}

.product-header-center .min-order {
    font-size: 12px;
    color: #717171;
    margin: 0;
}

.product-header-right {
    flex-shrink: 0;
    padding-left: 8px;
}

.cart-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    color: #3f3e3e;
    font-size: 20px;
    position: relative;
}

.cart-button:active {
    opacity: 0.7;
}

.cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #ea1d2c;
    color: #ffffff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
}

/* Site Wrapper - Mobile First */
.site-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Desktop - Limita largura máxima ao tamanho de mobile maior */
@media (min-width: 768px) {
    .site-wrapper {
        max-width: 428px; /* Tamanho aproximado de mobile grande (iPhone 14 Pro Max, etc) */
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    body {
        background-color: #f5f5f5;
    }
    
    /* Menu Fixo - largura total da tela no desktop */
    .fixed-menu {
        max-width: none;
        width: 100%;
        left: 0;
        right: 0;
        transform: translateY(-100%);
        margin-left: 0;
        margin-right: 0;
    }
    
    .fixed-menu.visible {
        transform: translateY(0);
    }
    
    /* Menu Inferior - largura total da tela no desktop */
    .bottom-menu {
        max-width: none;
        width: 100%;
        left: 0;
        right: 0;
        transform: none;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Banner Topo */
.banner-top {
    width: 100%;
    overflow: visible;
    background-color: #ffffff;
    position: relative;
    z-index: 0;
}

.banner-top img {
    width: 100%;
    height: auto;
    min-height: 120px;
    display: block;
    object-fit: cover;
}

/* Menu Fixo */
.fixed-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
}

.fixed-menu.visible {
    transform: translateY(0);
}

.fixed-menu-store-info {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.fixed-menu-store-info .store-logo img {
    width: 40px;
    height: 40px;
}

.fixed-menu-store-info .store-name h2 {
    font-size: 16px;
    margin-bottom: 2px;
}

.fixed-menu-store-info .min-order {
    font-size: 11px;
}

.fixed-menu-store-info .rating-text {
    font-size: 11px;
}

.fixed-menu-nav {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fixed-menu-nav::-webkit-scrollbar {
    display: none;
}

.fixed-menu-nav .nav-link {
    flex-shrink: 0;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #3f3e3e;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.fixed-menu-nav .nav-link.active {
    color: #ea1d2c;
    border-bottom-color: #ea1d2c;
}

.fixed-menu-nav .nav-link:hover {
    color: #ea1d2c;
}

/* Conteúdo Branco */
.white-content-wrapper {
    background-color: #ffffff;
    border-radius: 4px 4px 0 0;
    margin-top: -10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Informações da Loja */
.store-info {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    gap: 16px;
    border: 1px solid rgba(63, 62, 62, 0.1);
    border-radius: 4px;
    margin: 0 20px 20px 20px;
    color: #717171;
}

.store-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-logo svg {
    width: 48px;
    height: 48px;
}

.store-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.store-name {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.store-name-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.store-icon path,
.store-icon rect {
    fill: #717171;
}

.store-divider {
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(63, 62, 62, 0.2);
    margin-top: 12px;
    margin-bottom: 12px;
}

.store-delivery-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #717171;
}

.delivery-separator {
    color: #a6a6a5;
}

.delivery-free {
    color: #50a773;
    font-weight: 600;
}

/* Container de Escolha de Lanches */
.sandwich-selection-container {
    background-color: #f2f2f2;
    padding: 16px 20px;
    margin: 0;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.sandwich-selection-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sandwich-selection-title {
    font-size: 16px;
    font-weight: 600;
    color: #3f3e3e;
    margin: 0;
}

.sandwich-selection-subtitle {
    font-size: 12px;
    color: #717171;
    margin: 0;
}

.sandwich-selection-wrapper {
    width: 100%;
}

.sandwich-selection-error {
    font-size: 12px;
    color: #ea1d2c;
    font-weight: 500;
    margin: 0;
    width: 100%;
    display: block;
    padding: 8px 20px;
    background-color: #f2f2f2;
    text-align: center;
    border-radius: 4px;
    position: relative;
}

.sandwich-selection-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    border-top: 1px dashed #d0d0d0;
}

.sandwich-selection-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.sandwich-count-badge {
    background-color: #717171;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.sandwich-required-badge {
    background-color: #717171;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Lista de Produtos do Lanche */
.sandwich-products-list {
    padding: 0 20px 20px 20px;
}

.sandwich-product-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(63, 62, 62, 0.1);
}

.sandwich-product-item:last-child {
    border-bottom: none;
}

.sandwich-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sandwich-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #3f3e3e;
}

/* Preço exibido abaixo do nome nas bebidas */
.sandwich-product-price {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #555555;
    margin: 2px 0 6px 0;
}

.sandwich-product-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.sandwich-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sandwich-product-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sandwich-quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #3f3e3e;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.sandwich-quantity-btn:active {
    background-color: #f5f5f5;
}

.sandwich-quantity-value {
    font-size: 14px;
    font-weight: 600;
    color: #3f3e3e;
    min-width: 24px;
    text-align: center;
}

/* Seção de Comentários */
.comments-section {
    padding: 0 20px;
    margin-bottom: 40px; /* Espaço para o menu inferior fixo */
}

.comments-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(63, 62, 62, 0.1);
    margin-bottom: 16px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comments-title {
    font-size: 16px;
    font-weight: 500;
    color: #3f3e3e;
}

.comments-counter {
    font-size: 12px;
    font-weight: 400;
    color: #717171;
}

.comments-input {
    width: 100%;
    min-height: 120px;
    height: 120px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #3f3e3e;
    resize: none;
    box-sizing: border-box;
}

.comments-input:focus {
    outline: none;
    border-color: #ea1d2c;
}

.comments-input::placeholder {
    color: #a6a6a5;
}

.store-name h2 {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
    margin: 0;
}

.product-info-section {
    padding: 16px 20px;
    background-color: #ffffff;
}

.product-details {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #3f3e3e;
    margin: 0 0 8px 0;
}

.product-description-text {
    font-size: 12px;
    color: #a6a6a5;
    margin: 0 0 12px 0;
}

.store-name .min-order {
    font-size: 12px;
    color: #a6a6a5;
    margin: 0 0 12px 0;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price-original {
    font-size: 14px;
    color: #a6a6a5;
    text-decoration: line-through;
    font-weight: 400;
}

.product-price-current {
    font-size: 18px;
    color: #50a773;
    font-weight: 700;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.store-rating svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.store-rating .rating-text {
    font-size: 12px;
    font-weight: 400;
    color: #e7a74e;
}

/* Entrega */
.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    margin: 0 20px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background-color: #ffffff;
}

.delivery-text {
    font-size: 14px;
    font-weight: 500;
    color: #3f3e3e;
}

.delivery-info svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ea1d2c;
}

.delivery-info {
    cursor: pointer;
}

/* Destaques */
.highlights-section {
    padding: 20px;
    background-color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.highlights-title {
    font-size: 18px;
    font-weight: 600;
    color: #3f3e3e;
    margin: 0;
    margin-bottom: 16px;
}

.product-container {
    min-width: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    grid-template:
        "image" 1fr
        "info" auto;
    grid-gap: 11px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    border-radius: 4px;
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}

.product-image {
    grid-area: image;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

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

.product-info {
    grid-area: info;
    padding: 0 11px 11px 11px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #3e3e3e;
    margin: 0 0 8px 0;
}

.product-description {
    font-size: 12px;
    color: #717171;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 33.6px;
    height: 33.6px;
}

.product-price {
    font-size: 12px;
    color: #50a773;
    margin: 0;
    font-weight: 600;
}

/* Menu Modal de Entrega */
.delivery-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    pointer-events: none;
}

.delivery-modal.active {
    pointer-events: auto;
}

.delivery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    pointer-events: none;
}

.delivery-modal.active .delivery-modal-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.delivery-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px 20px;
    z-index: 2000;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.delivery-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px 20px;
    z-index: 2000;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.delivery-modal.active .delivery-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.delivery-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #3f3e3e;
    margin: 0 0 20px 0;
    text-align: center;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #ea1d2c;
    border-radius: 8px;
    margin-bottom: 16px;
    gap: 12px;
}

.delivery-option-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-option-icon svg {
    width: 24px;
    height: 24px;
}

.delivery-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-option-title {
    font-size: 15px;
    font-weight: 400;
    color: #3f3e3e;
}

.delivery-option-subtitle {
    font-size: 13px;
    color: #a6a6a5;
}

.delivery-option-radio {
    flex-shrink: 0;
}

.delivery-option-radio input[type="radio"] {
    display: none;
}

.delivery-option-radio label {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #ea1d2c;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.delivery-option-radio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #ea1d2c;
    border-radius: 50%;
}

.cart-subtotal-container {
    margin-bottom: 20px;
}

.cart-subtotal-divider {
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(63, 62, 62, 0.2);
    margin-bottom: 16px;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.cart-subtotal-label {
    font-size: 16px;
    font-weight: 600;
    color: #3f3e3e;
}

.cart-subtotal-value {
    font-size: 16px;
    font-weight: 700;
    color: #50a773;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-subtotal-original-price {
    font-size: 14px;
    color: #a6a6a5;
    text-decoration: line-through;
    font-weight: 400;
}

.cart-subtotal-discounted-price {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #50a773;
}

.cart-discount-badge {
    font-size: 10px;
    font-weight: 600;
    background-color: #50a773;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.2;
}

.delivery-confirm-btn {
    width: 100%;
    padding: 14px;
    background-color: #ea1d2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.delivery-confirm-btn:active {
    background-color: #d01a2a;
}

.delivery-confirm-btn.empty-cart {
    background-color: #3f3e3e;
}

.delivery-confirm-btn.empty-cart:active {
    background-color: #2e2e2e;
}

/* Carrinho */
.cart-items-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.cart-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #a6a6a5;
    font-size: 14px;
    font-weight: 400;
}

.cart-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    margin-bottom: 12px;
    background-color: #ffffff;
    gap: 12px;
}

.cart-item-row-1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-main-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #3f3e3e;
    margin: 0;
}

.cart-item-price-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-item-row-2 {
    width: 100%;
    padding-left: 0px;
}

.cart-item-additionals {
    font-size: 12px;
    color: #717171;
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-additional-type {
    margin: 0;
}

.cart-additional-type strong {
    font-weight: 600;
    color: #3f3e3e;
}

.cart-item-comment {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f2f2f2;
}

.cart-item-comment strong {
    font-weight: 600;
    color: #3f3e3e;
}

.cart-item-original-price {
    font-size: 12px;
    color: #a6a6a5;
    text-decoration: line-through;
    font-weight: 400;
}

.cart-item-current-price {
    font-size: 14px;
    color: #717171;
    font-weight: 700;
}

.cart-item-quantity {
    font-weight: 400;
    font-size: 12px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #3f3e3e;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.quantity-btn:active {
    background-color: #f5f5f5;
    transform: scale(0.95);
}

.quantity-value {
    font-size: 14px;
    font-weight: 600;
    color: #3f3e3e;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.cart-item-remove:active {
    opacity: 0.7;
}

.cart-item-remove svg {
    width: 20px;
    height: 20px;
}

.container {
    min-height: calc(100vh - 70px);
    padding: 20px;
}

/* Menu Inferior */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
}

/* Menu Inferior do Produto */
.product-bottom-menu {
    justify-content: space-between;
    padding: 12px 20px;
    height: auto;
    gap: 12px;
}

.product-quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-quantity-selector .quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #3f3e3e;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.product-quantity-selector .quantity-btn:active {
    background-color: #f5f5f5;
    transform: scale(0.95);
}

.product-quantity-selector .quantity-value {
    font-size: 14px;
    font-weight: 600;
    color: #3f3e3e;
    min-width: 24px;
    text-align: center;
}

.add-to-cart-btn {
    flex: 1;
    padding: 10px 24px;
    background-color: #ea1d2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:active {
    background-color: #d01a2a;
}

.add-to-cart-btn.disabled {
    background-color: #a6a6a5;
    opacity: 0.5;
    cursor: not-allowed;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 8px;
}

.menu-item:active {
    transform: scale(0.95);
    opacity: 0.7;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.menu-icon svg {
    width: 100%;
    height: 100%;
}

.menu-icon svg .st0 {
    fill: #3f3e3e;
    transition: fill 0.3s ease;
}

.menu-item.active .menu-icon svg .st0 {
    fill: #3f3e3e;
}

/* Garantir que todos os paths dos SVGs usem a cor #3f3e3e */
.menu-icon svg path {
    fill: #3f3e3e;
    transition: fill 0.3s ease;
}

.menu-item.active .menu-icon svg path {
    fill: #3f3e3e;
}

.menu-text {
    font-size: 12px;
    color: #3f3e3e;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
}

.menu-item.active .menu-text {
    color: #3f3e3e;
}

/* Responsividade */
@media (max-width: 480px) {
    .menu-text {
        font-size: 11px;
    }
    
    .menu-icon {
        width: 22px;
        height: 22px;
    }
}

/* Observações de Preparo - Checkboxes */
.observacoes-list {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.observacao-item {
    display: flex;
    align-items: center;
}

.observacao-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.observacao-checkbox:hover {
    background-color: #f8f8f8;
}

.observacao-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.observacao-checkbox:hover .checkmark {
    border-color: #50a773;
}

.observacao-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: #50a773;
    border-color: #50a773;
}

.observacao-checkbox input[type="checkbox"]:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.observacao-text {
    font-size: 14px;
    color: #3f3e3e;
    font-weight: 400;
    flex: 1;
}

.observacao-checkbox input[type="checkbox"]:checked ~ .observacao-text {
    color: #50a773;
    font-weight: 500;
}

