/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    position: relative;
}

:root {
    --primary-color: #f8b500;
    --secondary-color: #e74c3c;
    --dark-color: #222;
    --light-color: #f5f5f5;
    --success-color: #28a745;
}

/* Header */
header {
    width: 100%;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.menu-toggle, .search-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.delivery-options {
    display: flex;
    flex-grow: 1;
    margin: 0 15px;
}

.delivery-options select, .delivery-options input {
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    margin-right: 5px;
}

.delivery-options select {
    background-color: #333;
    color: white;
}

.delivery-options input {
    flex-grow: 1;
    background-color: #333;
    color: white;
}

.search-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px;
    z-index: 101;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-container input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    font-size: 1rem;
}

.close-search {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

.hero-banner {
    height: 300px;
    background-image: url('imagens/capa.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 50px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.banner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.banner-content p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.banner-content i {
    margin-right: 5px;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.delivery-status {
    color: var(--success-color);
    font-weight: bold;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 0;
}

.rating i {
    color: var(--primary-color);
}

.status.open {
    background-color: var(--success-color);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 5px;
}

/* Categorias */
.categories {
    background-color: white;
    position: sticky;
    top: 50px;
    z-index: 90;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.categories-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    position: relative;
}

.category-btn.active {
    color: #000;
    font-weight: 600;
}

.category-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background-color: #f8b500;
}

.scroll-right {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    z-index: 1000;
    padding-top: 60px;
    transition: left 0.3s ease;
}

.sidebar.open {
    left: 0;
}

.sidebar-menu {
    padding: 20px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-header p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.sidebar-menu ul {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.sidebar-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-menu a.active {
    color: #f8b500;
}

/* Conteúdo Principal */
main {
    padding: 20px 15px;
    margin-bottom: 70px;
}

/* Banners de Promoção */
.promo-banner {
    margin-bottom: 15px;
}

.entrega-gratis {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.promocao-banner {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.promocao-banner i {
    color: #e74c3c;
}

/* Timer de Promoção */
.promo-timer {
    background-color: #ffebee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.promo-timer p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #c62828;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-block {
    background-color: #c62828;
    color: white;
    border-radius: 5px;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timer-block span:first-child {
    font-size: 2rem;
    font-weight: bold;
}

.timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.menu-section {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.toggle-section {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.products {
    padding: 15px;
}

.product-card {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    position: relative;
}

.product-card:last-child {
    border-bottom: none;
}

.product-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 0 0 4px 0;
    z-index: 1;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-tag i {
    margin-left: 3px;
}

.product-info {
    flex: 1;
    padding-right: 15px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price {
    font-weight: 600;
    color: #000;
}

.adicionais {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 5px;
}

.product-testimonial {
    background-color: #f5f5f5;
    padding: 8px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.8rem;
    font-style: italic;
}

.special-offer {
    color: var(--secondary-color);
    font-weight: bold;
    margin-top: 5px;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding-top: 5px;
    clear: both;
}

.special-offer i {
    animation: flame 1.5s infinite;
}

@keyframes flame {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.highlight {
    background-color: #ffeb3b;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    animation: pulse-highlight 2s infinite;
    display: inline-block;
}

#combo-count {
    display: inline-block;
    margin-top: 5px;
}

@keyframes pulse-highlight {
    0% { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botão do Carrinho */
.cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #f8b500;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 90;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cart-button:hover {
    background-color: #e67e22;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modal do Carrinho */
.cart-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 95;
    transition: bottom 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.cart-modal.open {
    bottom: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    font-size: 1.3rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-items {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}

.cart-item-quantity span {
    margin: 0 10px;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.min-order-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.checkout-button {
    width: 100%;
    padding: 15px;
    background-color: #f8b500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.checkout-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Modal de Produto */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.product-modal.open {
    display: flex;
}

.close-product-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    color: white;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.product-modal-image {
    height: 40vh;
    overflow: hidden;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 20px;
    flex-grow: 1;
}

.product-modal-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-modal-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-modal-info .price {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.product-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-quantity input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.add-to-cart-button {
    width: 100%;
    padding: 15px;
    background-color: #f8b500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Modal de Checkout */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.checkout-modal.open {
    display: flex;
}

.checkout-modal-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.close-checkout-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.checkout-modal h2 {
    text-align: center;
    margin: 20px 0;
    font-size: 1.5rem;
}

.checkout-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.checkout-summary {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.checkout-summary h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-weight: 600;
    font-size: 1.1rem;
}

.discount-message {
    margin-top: 15px;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 5px;
    font-size: 0.9rem;
}

.complete-order-button {
    width: 100%;
    padding: 15px;
    background-color: #f8b500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Notificações de Compra */
.notification-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 89;
    width: 280px;
}

.notification {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
    border-left: 4px solid #2e7d32;
}

.notification-icon {
    background-color: #e8f5e9;
    color: #2e7d32;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.notification-content {
    flex: 1;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Avaliações */
.rating-container {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-score span {
    font-size: 2rem;
    font-weight: bold;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Overlay de Fundo */
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    display: none;
}

.overlay-bg.open {
    display: block;
}

/* Responsividade */
@media (max-width: 767px) {
    /* Ajustes para dispositivos móveis */
    .header-top {
        padding: 8px 10px;
    }
    
    .product-card {
        padding-top: 25px;
    }
    
    .delivery-options input {
        width: 150px;
    }
    
    .hero-banner {
        height: 250px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .banner-content h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .social-icons {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .delivery-info {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .info-item {
        font-size: 0.8rem;
    }
    
    .timer-block {
        width: 70px;
        height: 70px;
    }
    
    .timer-block span:first-child {
        font-size: 1.5rem;
    }
    
    .product-card {
        padding: 10px 0;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.8rem;
    }
    
    .product-image {
        width: 70px;
        height: 70px;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .cart-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .cart-modal {
        max-height: 90vh;
    }
    
    .product-modal-image {
        height: 30vh;
    }
    
    .product-modal-info h3 {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .header-top {
        padding: 10px 30px;
    }

    .hero-banner {
        height: 350px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    main {
        padding: 30px;
        max-width: 1200px;
        margin: 0 auto 70px;
    }

    .products {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .product-card {
        flex-direction: column;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .product-info {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .product-image {
        width: 100%;
        height: 180px;
        margin-top: auto;
    }

    .cart-modal {
        width: 400px;
        right: 20px;
        left: auto;
        bottom: -100%;
        border-radius: 10px;
        max-height: 600px;
    }

    .cart-modal.open {
        bottom: 20px;
    }
}

/* Modal de Informações */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.info-modal.open {
    display: flex;
}

.info-modal-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.close-info-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.info-modal h2 {
    text-align: center;
    margin: 20px 0;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.schedule-list {
    list-style: none;
    padding: 0;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.day {
    font-weight: 600;
    text-transform: uppercase;
}

.payment-methods {
    margin: 15px 0;
}

.payment-method {
    margin-bottom: 15px;
}

.payment-method h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.payment-method p {
    color: #666;
    font-size: 0.9rem;
}

/* Ajustes gerais para evitar conteúdo cortado */
.categories-scroll {
    -webkit-overflow-scrolling: touch;
    padding: 0 5px;
}

.category-btn {
    padding: 15px 15px;
    font-size: 0.9rem;
}

.timer {
    flex-wrap: wrap;
    justify-content: center;
}

.notification-container {
    max-width: 90%;
    width: 280px;
}

.product-testimonial {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
