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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--color-background, #F7F7F7);
    color: var(--color-text, #333);
    transition: background 0.3s, color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text, #333);
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.status-badge i {
    font-size: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-open {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.status-closed {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.search-section {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
    z-index: 90;
}

.search-container-main {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary, #FF6B35);
    background: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

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

.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
}

.search-clear:hover {
    background: #c82333;
    transform: translateY(-50%) scale(1.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-btn, .dark-mode-toggle {
    background: rgba(0,0,0,0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-text, #333);
}

.share-btn:hover, .dark-mode-toggle:hover {
    background: var(--color-primary, #FF6B35);
    color: white;
    transform: scale(1.1);
}

.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

.share-modal.show {
    opacity: 1;
}

.share-modal-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.share-modal.show .share-modal-content {
    transform: scale(1);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--color-text, #333);
}

.share-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.share-close:hover {
    color: #333;
}

.share-modal-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.share-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-option i {
    font-size: 32px;
}

.share-option.whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.share-option.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-option.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.share-option.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-option.twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}

.share-option.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-option.link {
    color: #666;
    border-color: #666;
}

.share-option.link:hover {
    background: #666;
    color: white;
}

/* Google Translate Widget está em google-translate.css */

.cart-btn {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-primary, #FF6B35);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-btn.cart-bounce {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.1); }
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transition: right 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.cart-notification.show {
    right: 20px;
}

.cart-notification i {
    font-size: 20px;
}

.store-closed-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-bottom: 3px solid #ffc107;
    padding: 30px 0;
}

.store-closed-banner .closed-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.store-closed-banner .closed-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-closed-banner .closed-icon i {
    font-size: 28px;
    color: #fff;
}

.store-closed-banner .closed-text {
    flex: 1;
}

.store-closed-banner h3 {
    color: #856404;
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.store-closed-banner p {
    color: #856404;
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.store-closed-banner .horarios-semana,
.store-closed-banner .horarios-texto {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(133, 100, 4, 0.2);
}

.store-closed-banner h4 {
    color: #856404;
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-closed-banner .horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.store-closed-banner .horario-dia {
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(133, 100, 4, 0.2);
}

.store-closed-banner .dia-nome {
    font-weight: 600;
    color: #856404;
    font-size: 14px;
}

.store-closed-banner .dia-horario {
    color: #856404;
    font-size: 14px;
}

.store-closed-banner .fechado-tag {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.store-closed-banner .horarios-texto p {
    color: #856404;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .store-closed-banner .closed-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .store-closed-banner .horarios-grid {
        grid-template-columns: 1fr;
    }
}

.categories-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 80px;
    z-index: 90;
}

.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
    transition: all 0.3s;
    font-weight: 500;
}

.category-link:hover {
    background: var(--color-primary, #FF6B35);
    color: white;
    transform: translateY(-2px);
}

.category-link-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.main-content {
    padding: 30px 0;
    min-height: 60vh;
}

.promotions-section {
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb, 255, 107, 53), 0.06) 0%, rgba(var(--color-primary-rgb, 255, 140, 90), 0.08) 100%);
    border-radius: 20px;
    padding: 25px 30px;
    border: 2px solid rgba(var(--color-primary-rgb, 255, 107, 53), 0.15);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb, 255, 107, 53), 0.06);
}

.promotions-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.promotions-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary, #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb, 255, 107, 53), 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promotions-header h2 {
    font-size: 24px;
    margin-bottom: 2px;
    color: var(--color-primary, #FF6B35);
    font-weight: 700;
}

.promotions-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.promotions-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--color-primary-rgb, 255, 107, 53), 0.5) transparent;
}

.promotions-scroll::-webkit-scrollbar {
    height: 8px;
}

.promotions-scroll::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.promotions-scroll::-webkit-scrollbar-thumb {
    background: rgba(var(--color-primary-rgb, 255, 107, 53), 0.5);
    border-radius: 10px;
}

.promotion-card {
    min-width: 320px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    height: 140px;
    border: 2px solid rgba(var(--color-primary-rgb, 255, 107, 53), 0.2);
    position: relative;
    flex-shrink: 0;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb, 255, 107, 53), 0.25);
    border-color: var(--color-primary, #FF6B35);
}

.promotion-image {
    width: 140px;
    min-width: 140px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.15);
}

.promotion-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-primary, #FF6B35);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 3px 10px rgba(var(--color-primary-rgb, 255, 107, 53), 0.5);
    z-index: 2;
}

.promotion-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promotion-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.promotion-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.price-promo {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-primary, #FF6B35);
}

.discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.main-content {
    padding: 30px 0;
    min-height: 60vh;
}

.category-section {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary, #FF6B35);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.category-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.category-header h2 {
    font-size: 22px;
    color: var(--color-text, #333);
    margin-bottom: 2px;
    line-height: 1.2;
}

.category-header p {
    color: #666;
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 130px;
    border: 2px solid transparent;
}


.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: transparent;
}

.product-card.featured {
    border: 2px solid var(--color-primary, #FF6B35);
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.15);
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-primary, #FF6B35);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.product-card.on-sale {
    border: 2px solid #dc3545;
}

.price-old-small {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.price-promo-main {
    font-size: 22px;
    font-weight: bold;
    color: #dc3545;
    display: block;
}

.product-image {
    width: 150px;
    min-width: 150px;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 17px;
    color: var(--color-text, #333);
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price {
    font-size: 19px;
    font-weight: bold;
    color: var(--color-primary, #FF6B35);
    margin-top: auto;
}

.empty-menu {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-menu i {
    color: #ddd;
    margin-bottom: 20px;
}

.empty-menu h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #666;
}

.no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    background: white;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.no-results-message i {
    color: #ddd;
    margin-bottom: 20px;
}

.no-results-message h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #666;
}

.no-results-message p {
    font-size: 14px;
    color: #999;
}

.map-section {
    margin-top: 60px;
    margin-bottom: 0;
}

.map-title {
    text-align: center;
    font-size: 32px;
    color: var(--color-text, #333);
    margin-bottom: 15px;
}

.map-address {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-address i {
    color: var(--color-primary, #FF6B35);
    font-size: 20px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.footer-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    height: 70px;
    width: auto;
}

.footer-brand h3 {
    margin: 0;
    font-size: 20px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.footer-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link i {
    color: var(--color-primary, #FF6B35);
    font-size: 16px;
}

.footer-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-horarios,
.footer-horarios-texto {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-horarios h4,
.footer-horarios-texto h4 {
    color: white;
    font-size: 16px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-horarios h4 i,
.footer-horarios-texto h4 i {
    color: var(--color-primary, #FF6B35);
}

.horarios-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 14px;
}

.horario-item .dia {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.horario-item .horario {
    color: rgba(255,255,255,0.7);
}

.horario-item .fechado {
    color: #e74c3c;
    font-weight: 600;
    font-size: 12px;
}

.footer-horarios-texto p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--color-primary, #FF6B35);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom strong {
    color: var(--color-primary, #FF6B35);
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 20px;
    width: auto;
    margin-left: 5px;
}

.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--color-primary, #FF6B35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h2 {
    font-size: 20px;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-cart i {
    color: #ddd;
    margin-bottom: 15px;
}

.cart-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
}

.cart-item-details {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

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

.qty-btn-small {
    width: 28px;
    height: 28px;
    background: var(--color-primary, #FF6B35);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-small:hover {
    background: var(--color-primary-dark, #e55a25);
    transform: scale(1.1);
}

.qty-btn-small:active {
    transform: scale(0.9);
}

.qty-display {
    min-width: 35px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.cart-item-price {
    font-weight: bold;
    color: var(--color-primary, #FF6B35);
    font-size: 16px;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #e0e0e0;
    background: #f8f9fa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
}

.cart-total strong {
    font-size: 24px;
    color: var(--color-primary, #FF6B35);
}

.btn-whatsapp {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-whatsapp:hover:not(:disabled) {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.modal-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-product-info {
    padding: 30px;
}

.modal-product-name {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.modal-product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-product-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary, #FF6B35);
    margin-bottom: 30px;
}

.addon-group {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.addon-group-header {
    margin-bottom: 15px;
}

.addon-group-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.addon-group-subtitle {
    font-size: 13px;
    color: #666;
}

.addon-required {
    color: #dc3545;
    font-weight: 600;
}

.addon-optional {
    color: #28a745;
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.addon-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.addon-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-item input[type="checkbox"],
.addon-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.addon-item-name {
    font-weight: 500;
    color: #333;
}

.addon-item-price {
    font-weight: 600;
    color: var(--color-primary, #FF6B35);
}

.product-quantity-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-quantity-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    background: var(--color-primary, #FF6B35);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--color-primary-dark, #e55a25);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

#productQuantity {
    width: 80px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
}

.product-observation-section {
    margin: 25px 0;
}

.product-observation-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

#productObservation {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

#productObservation:focus {
    outline: none;
    border-color: var(--color-primary, #FF6B35);
}

#productObservation::placeholder {
    color: #999;
}

.modal-add-btn {
    width: 100%;
    padding: 18px;
    background: var(--color-primary, #FF6B35);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.modal-add-btn:hover {
    background: var(--color-primary-dark, #e55a25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .status-badge {
        font-size: 11px;
        padding: 5px 12px;
        gap: 5px;
    }
    
    .status-badge i {
        font-size: 7px;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .categories-nav {
        top: 70px;
    }
    
    .search-section {
        padding: 15px 0;
        top: 70px;
    }
    
    .search-container-main {
        max-width: 100%;
    }
    
    .search-input {
        font-size: 14px;
        padding: 12px 45px 12px 45px;
        border-radius: 25px;
    }
    
    .search-icon {
        font-size: 16px;
        left: 15px;
    }
    
    .search-clear {
        right: 12px;
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .category-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        min-height: 110px;
    }
    
    .product-image {
        width: 110px;
        min-width: 110px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .product-description {
        font-size: 12px;
        margin-bottom: 8px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    
    .product-price {
        font-size: 17px;
    }
    
    .featured-badge,
    .sale-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: 8px;
        left: 8px;
    }
    
    .category-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .category-image {
        width: 50px;
        height: 50px;
    }
    
    .category-link-img {
        width: 26px;
        height: 26px;
    }
    
    .category-header {
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .category-header h2 {
        font-size: 19px;
        margin-bottom: 2px;
    }
    
    .category-header p {
        font-size: 12px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-product-image {
        height: 200px;
    }
    
    .modal-product-info {
        padding: 20px;
    }
    
    .modal-product-name {
        font-size: 22px;
    }
    
    .modal-product-price {
        font-size: 26px;
    }
    
    .product-quantity-section,
    .product-observation-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    #productQuantity {
        width: 70px;
        height: 40px;
        font-size: 18px;
    }
    
    #productObservation {
        font-size: 14px;
        padding: 10px;
    }
    
    .cart-item-footer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cart-item-quantity {
        order: 1;
    }
    
    .cart-item-price {
        order: 2;
        width: 100%;
        text-align: right;
        font-size: 18px;
    }
    
    .map-section {
        margin-top: 40px;
    }
    
    .map-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .map-address {
        font-size: 14px;
        padding: 0 15px;
        flex-direction: column;
        gap: 5px;
    }
    
    .map-container {
        height: 300px;
        border-radius: 0;
        margin-bottom: 40px;
    }
    
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-main-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-brand img {
        height: 60px;
    }
    
    .footer-brand h3 {
        font-size: 24px;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-link i {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .horarios-lista {
        grid-template-columns: 1fr;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-wrap: wrap;
        padding-top: 15px;
        font-size: 12px;
    }
    
    .footer-logo {
        height: 18px;
    }
    
    .promotions-section {
        padding: 20px 15px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .promotions-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .promotions-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .promotions-header h2 {
        font-size: 20px;
    }
    
    .promotions-header p {
        font-size: 13px;
    }
    
    .promotions-scroll {
        gap: 15px;
    }
    
    .promotion-card {
        min-width: 280px;
        height: 120px;
    }
    
    .promotion-image {
        width: 110px;
        min-width: 110px;
    }
    
    .promotion-info {
        padding: 12px;
    }
    
    .promotion-info h3 {
        font-size: 14px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .price-old {
        font-size: 12px;
    }
    
    .price-promo {
        font-size: 18px;
    }
    
    .discount-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .promotion-badge {
        font-size: 8px;
        padding: 4px 8px;
        top: 6px;
        right: 6px;
    }
}
