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

html {
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #d32f2f;
    transition: transform 0.3s;
}

header.hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: #ff6f00;
}

.logo span {
    color: #ff6f00;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: #ff6f00;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-btn:hover {
    color: #ff6f00;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d32f2f;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550547660-d9450f859349?w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: #ff6f00;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #ddd;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d32f2f, #ff6f00);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.section-title span {
    color: #ff6f00;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: #aaa;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6f00;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-small:hover {
    background: #ff6f00;
    transform: scale(1.05);
}

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

.about {
    background: #222;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-img {
    background: url('https://images.unsplash.com/photo-1571091718767-18b5b1457add?w=600&q=80') center/cover;
    height: 350px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.feature p {
    color: #aaa;
}

.combos {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

#bebidas {
    background: #222;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.combo-card {
    background: linear-gradient(145deg, #333, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.combo-card:hover {
    border-color: #ff6f00;
    transform: scale(1.02);
}

.combo-card.featured {
    border-color: #d32f2f;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d32f2f;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.badge.popular {
    background: #ff6f00;
}

.badge.new {
    background: #4caf50;
}

.combo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.combo-card .combo-desc {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.combo-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.combo-price .old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
}

.combo-price .new-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6f00;
    font-family: 'Bebas Neue', sans-serif;
}

.combo-items {
    list-style: none;
    margin-bottom: 1.5rem;
}

.combo-items li {
    padding: 0.4rem 0;
    color: #ccc;
}

.combo-items li::before {
    content: '✓ ';
    color: #4caf50;
    font-weight: bold;
}

.gallery {
    background: #222;
    padding: 0;
    width: 100%;
}

.gallery .section {
    padding: 5rem 0 0 0;
    max-width: 100%;
    margin: 0;
}

.gallery .section-title {
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #333;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.testimonials {
    background: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: #ff6f00;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
}

.stars {
    color: #ffeb3b;
    font-size: 1.1rem;
}

.contact {
    background: #222;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #333;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6f00;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

footer {
    background: #111;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h3 {
    color: #ff6f00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    line-height: 2;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff6f00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff6f00;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    text-align: center;
}

.footer-brand {
    color: #4caf50;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-top: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-img {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    color: #fff;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-close {
        top: -45px;
        right: 5px;
    }

    #lightbox-img {
        max-width: 95vw;
        max-height: 65vh;
    }

    .lightbox-counter {
        bottom: -35px;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 0;
    }

    .lightbox-next {
        right: 0;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: #2a2a2a;
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.cart-modal.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    margin-bottom: 1rem;
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: #ff6f00;
    font-weight: bold;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #555;
    background: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #ff6f00;
    border-color: #ff6f00;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #d32f2f;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #444;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cart-total span:last-child {
    color: #ff6f00;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.cart-empty span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #444;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    z-index: 3000;
    transform: translateX(calc(100% + 40px));
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #4caf50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.confirm {
    border-left: 4px solid #ff6f00;
}

.toast-message {
    flex: 1;
    color: #fff;
}

.toast-btn {
    display: none;
    background: linear-gradient(135deg, #d32f2f, #ff6f00);
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.toast-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.toast::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f, #ff6f00, #4caf50);
    border-radius: 0 0 16px 16px;
    animation: toastTimer 3s linear forwards;
}

@keyframes toastTimer {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.toast.success::before {
    background: #4caf50;
}

.toast.error::before {
    background: #f44336;
}

.toast.confirm::before {
    background: linear-gradient(90deg, #ff6f00, #d32f2f);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(calc(100% + 40px)) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateX(calc(100% + 40px)) scale(0.8);
        opacity: 0;
    }
}

.toast.show {
    animation: toastSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .gallery .section {
        padding: 3rem 0 0 0;
    }

    .gallery .section-title {
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .cart-modal {
        width: 100%;
        right: -100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .toast {
        bottom: 90px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .card-img {
        height: 180px;
    }

    .gallery .section {
        padding: 2rem 0 0 0;
    }

    .gallery .section-title {
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    header {
        padding: 0.8rem 1rem;
    }

    .combo-card {
        padding: 1.5rem;
    }

    .combo-price .new-price {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery .section-title {
        padding: 0 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .section {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 5.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .gallery .section-title {
        padding: 0 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }
}

@media print {
    header,
    .whatsapp-float,
    .cart-btn,
    .btn-small,
    .toast {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }

    .card,
    .combo-card,
    .testimonial,
    .feature {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}
