* {
    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;
}

/* 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 {
    background-color: #EA1D2C;
    border-radius: 50%;
    padding: 3px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.fixed-menu-store-info .store-name {
    flex: 1;
}

.fixed-menu-store-info .store-name h2 {
    font-size: 16px;
    font-weight: 500;
    color: #3f3e3e;
    margin: 0;
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-menu-store-info .min-order-row {
    display: flex;
    align-items: center;
    margin-top: 0;
    line-height: 1.2;
}

.fixed-menu-store-info .min-order {
    font-size: 12px;
    color: #717171;
    margin: 0;
}

.fixed-menu-store-info .min-order {
    font-size: 12px;
    color: #717171;
    margin: 0;
}

.fixed-menu-store-info .min-order .delivery-free {
    color: #50a773;
    font-weight: 600;
}

.fixed-menu-store-info .store-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}

.fixed-menu-store-info .store-rating svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.fixed-menu-store-info .rating-text {
    font-size: 13px;
    color: #e7a74e;
}

.fixed-menu-store-info .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;
    flex-shrink: 0;
}

.fixed-menu-store-info .cart-button:active {
    opacity: 0.7;
}

.fixed-menu-store-info .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;
}

.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: 16px 20px;
    background-color: #ffffff;
    gap: 16px;
}

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

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

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

.store-name h2 {
    font-size: 16px;
    font-weight: 500;
    color: #3f3e3e;
    margin: 0;
    margin-bottom: 4px;
}

.min-order-row {
    display: flex;
    align-items: center;
}

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

.store-name .min-order .delivery-free {
    color: #50a773;
    font-weight: 600;
}

.store-info .store-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}

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

.store-info .store-rating .rating-text {
    font-size: 14px;
    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;
}

/* Última seção de destaques - adiciona espaçamento para o menu inferior */
.highlights-section:last-of-type {
    padding-bottom: calc(20px + 70px); /* padding normal + altura do menu inferior */
}

/* Último produto na grid - adiciona espaçamento para o menu inferior */
.products-grid:last-of-type {
    margin-bottom: 10px;
}

.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: 400;
}

.price-label {
    font-weight: 400;
}

.price-value {
    font-weight: 700;
}

/* Produto Horizontal (2 colunas) */
.product-container-horizontal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 0 0 10px 0;
    background-color: #ffffff;
}

.product-info-horizontal {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.product-description-horizontal {
    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-horizontal {
    font-size: 12px;
    color: #50a773;
    margin: 0;
    font-weight: 400;
}

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

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

/* 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: 16px 16px 0 0;
    padding: 24px 20px 20px 20px;
    z-index: 2000;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.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 8px 0;
    text-align: center;
}

.delivery-modal-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.5;
    padding: 0 10px;
}

.delivery-cep-container {
    margin-bottom: 20px;
}

.delivery-cep-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #3f3e3e;
    margin-bottom: 8px;
}

.delivery-cep-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    outline: none;
    color: #3f3e3e;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.delivery-cep-input:focus {
    border-color: #ea1d2c;
}

.delivery-cep-input::placeholder {
    color: #a6a6a5;
}

.delivery-location-info {
    margin-top: 12px;
    margin-bottom: 10px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 4px;
    animation: fadeIn 0.3s ease;
    border: 1px dashed #e0e0e0;
    border-spacing: 0;
}

/* Pontilhado mais espaçado usando stroke-dasharray customizado */
.delivery-location-info {
    background-image: 
        linear-gradient(to right, #e0e0e0 0%, #e0e0e0 50%, transparent 50%, transparent 100%),
        linear-gradient(to bottom, #e0e0e0 0%, #e0e0e0 50%, transparent 50%, transparent 100%),
        linear-gradient(to left, #e0e0e0 0%, #e0e0e0 50%, transparent 50%, transparent 100%),
        linear-gradient(to top, #e0e0e0 0%, #e0e0e0 50%, transparent 50%, transparent 100%);
    background-size: 8px 1px, 1px 8px, 8px 1px, 1px 8px;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delivery-location-field {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-location-field:last-child {
    margin-bottom: 0;
}

.delivery-location-label {
    font-size: 12px;
    font-weight: 500;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-location-select {
    font-size: 14px;
    font-weight: 500;
    color: #3f3e3e;
    padding: 8px 12px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233f3e3e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.delivery-location-select:focus {
    border-color: #ea1d2c;
}

.delivery-location-select:disabled {
    background-color: #f5f5f5;
    color: #a6a6a5;
    cursor: not-allowed;
}

.delivery-location-select option {
    padding: 8px;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #ea1d2c;
    border-radius: 8px;
    margin-bottom: 8px;
    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-distance {
    font-size: 13px;
    font-weight: 600;
    color: #50a773;
    margin: 0 0 8px 0;
    text-align: center;
}

.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%;
}

.delivery-search-btn {
    display: none;
    width: 100%;
    padding: 14px;
    background-color: #ea1d2c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    margin-bottom: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.delivery-modal.active .delivery-modal-content .delivery-search-btn {
    display: block !important;
}

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

.delivery-search-btn:disabled {
    background-color: #a6a6a5;
    cursor: not-allowed;
}

.delivery-confirm-btn {
    width: 100%;
    padding: 14px;
    background-color: #ea1d2c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

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

.delivery-confirm-btn:disabled {
    background-color: #a6a6a5;
    cursor: not-allowed;
}

.delivery-confirm-btn.close-mode {
    background-color: #a6a6a5;
    color: #ffffff;
}

.delivery-confirm-btn.close-mode:active {
    background-color: #8e8e8d;
}

.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;
    z-index: 1000;
}

.bottom-menu-default {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    height: 70px;
}

.bottom-menu-cart {
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    gap: 12px;
}

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

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

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

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

.bottom-menu-cart-btn:active {
    background-color: #d01a2a;
}

.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;
}

/* Estilos do Carrinho */
.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.empty-cart {
    background-color: #3f3e3e;
}

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

.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;
}

.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;
}

/* ============================================
   MODAL DE BUSCA
   ============================================ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.search-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 90vh;
    background-color: #ffffff;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-results-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.search-empty-message {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    color: #717171;
    font-size: 16px;
    flex-shrink: 0;
}

.search-input-container {
    position: relative;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.search-title {
    font-size: 18px;
    font-weight: 600;
    color: #3f3e3e;
    margin: 0 0 12px 0;
    padding: 0;
    text-align: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-title.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    outline: none;
    color: #3f3e3e;
    box-sizing: border-box;
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.search-clear-btn:hover svg path {
    stroke: #3f3e3e;
}

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

.search-close-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #ea1d2c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.search-close-btn:hover {
    background-color: #d01726;
}

.search-close-btn:active {
    background-color: #b81420;
}

/* Desktop: Centralizar o modal */
@media (min-width: 768px) {
    .search-modal-content {
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        max-width: 428px;
    }
    
    .search-modal.active .search-modal-content {
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   MENSAGEM DE ERRO NO MENU INFERIOR
   ============================================ */
.bottom-menu-error {
    position: fixed;
    bottom: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #ea1d2c;
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 9999;
    animation: slideUpError 0.3s ease;
    border-bottom: 1px solid #f2f2f2;
}

@keyframes slideUpError {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Desktop: Centralizar a mensagem de erro */
@media (min-width: 768px) {
    .bottom-menu-error {
        left: 50%;
        max-width: 428px;
        border-radius: 4px 4px 0 0;
        animation: slideUpErrorDesktop 0.3s ease;
    }
    
    @keyframes slideUpErrorDesktop {
        from {
            transform: translateX(-50%) translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
    }
}

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

