body {
    background-color: #111;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    font-family: 'Kanit', sans-serif;
    box-sizing: border-box;
}

/* Make sure all elements respect the box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Update any specific font-weight uses */
h1, h2, h3 {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
}

.hero-subtitle {
    font-weight: 200;
}

/* Navigation and buttons should be medium weight */
nav ul li, button {
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
}

/* CTA Component - Base Styles */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    background-color: #222;
    border-top: #B89265 1px solid;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.cta-text {
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Kanit', sans-serif;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(184, 146, 101, 0.03) 0%, rgba(17, 17, 17, 0) 100%);
    pointer-events: none;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.cta button {
    position: relative;
    min-width: 200px;
    max-width: 300px;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
}

.cta #whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.cta #whatsapp::before {
    content: "📱";
    font-size: 1.2rem;
}

.cta #domicilio {
    background: linear-gradient(135deg, #B89265 0%, #8B6B4A 100%);
    color: white;
}

.cta #domicilio::before {
    content: "🛵";
    font-size: 1.2rem;
}

/* Hover Effects */
.cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta button:active {
    transform: translateY(-1px);
}

/* Modern focus states */
.cta button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 146, 101, 0.4), 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Button shine effect on hover */
.cta button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.cta button:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateX(50%);
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .cta {
        padding: 24px 0;
    }
    
    .cta button {
        font-size: 1.1rem;
        padding: 18px 36px;
    }

    .cta-container {
        gap: 24px;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .cta {
        padding: 16px;
    }

    .cta button {
        min-width: unset;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .cta-container {
        padding: 0 16px;
    }
}

/* Safe area handling */
@supports (padding: max(0px)) {
    .cta {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cta {
        padding: 12px;
    }

    .cta-container {
        gap: 12px;
    }

    .cta a {
        margin: 0 4px;
    }

    .cta button {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: unset;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) { /* MOBILE */

    nav {
        background-color: #222;
        width: 100%;
        /* display: none; */
    }

    .desktop-menu {
        display: none;
    }

    .burger-menu-bar {
        display: flex !important; /* Force display on mobile */
        box-sizing: border-box;
        padding: 16px 8px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: #222;
    }
    
    .burger-menu-bar img {
        height: 40px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .burger-menu-bar label {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .burger-icon {
        width: 24px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .burger-icon .line {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 2px;
        display: block;
    }

    .burger-menu {
        display: none; /* Hide by default */
        justify-content: center;
        align-items: center;
        padding: 8px 0px;
        text-decoration: none;
        list-style-type: none;
        width: 100%;
        margin: auto;
        font-size: 16px;
        font-weight: 600;
    }

    #burger-menu-image {
        width: 24px;
        height: auto;
        display: block;
    }
    
    .active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0 16px;
        
    }

    nav ul {
        text-decoration: none;
        list-style-type: none;
        list-style: none;
        padding: 8px 0px;
        margin: 0px;
    }

    nav ul li {
        padding: 16px 0px;
        text-decoration: none;
        list-style-type: none;
        width: 100%;
        margin: auto;
        font-size: 16px;
        font-weight: 600;
    }

    nav ul li a {
        text-decoration: none;
        color: #f4f4f4;
    }

    .image-product img {
        width: 100px;
        border-radius: 8px;
    }
    
    h1, h2 {
        text-align: center;
    }
    
    .promos, main, .sabores, .dedos-y-aros, .antojos, .extras {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        /* background-color: yellow; */
        /* margin: auto; */
        /* background-color: bisque; */
        align-items: center;
    }

    .disclaimer {	
        text-align: center;
        width: 94%;
        margin: 40px 0;
    }
    
    .product {
        display: flex;
        box-sizing: content-box;
        justify-content: space-between;
        background-color: #1a1a1a;
        border-radius: 8px;
        padding: 0px 16px;
        align-items: center;
        margin: 6px 4px;
        width: 100%;
        gap: 4px;
    }
    
    .text-product {
        margin-left: 20px;
        width: 240px;
    }
    
    .price h4 {
        color: #B89265;
        border: solid 2px #B89265;
        padding: 4px 10px;
        border-radius: 8px;
    }
    
    label {
        border: solid 2px rgb(255, 255, 255);
        padding: 4px 10px;
        border-radius: 8px;
    }
    
    .sabores label {
        margin: 4px;
        font-weight: 600;
    }

    #bbq {
        border: solid 2px #e24c4c;
        color: #e24c4c;
    }

    #mango {
        border: solid 2px #e2b84c;
        color: #e2b84c;
    }

    #buffalo {
        border: solid 2px #e2834c;
        color: #e2834c;
    }

    #lemon {
        border: solid 2px #88e24c;
        color: #88e24c;
    }

    #hot {
        border: solid 2px #d82d2d;
        color: #d82d2d;
    }

    #ajo {
        border: solid 2px #d8d8d8;
        color: #d8d8d8;
    }

    #pina {
        border: solid 2px #fdf24f;
        color: #fdf24f;
    }

    #tamarindo {
        border: solid 2px #ec8e21;
        color: #ec8e21;
    }

    #hot-bbq {
        border: solid 2px #e24c4c;
        color: #e24c4c;
    }

    #cajun {
        border: solid 2px #ec5f1d;    
        color: #ec5f1d;
    }

    #extremo {
        border: solid 2px #ffa8a8;
        color: #ffa8a8;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #222;
        padding: 32px 0px;
        margin-bottom: 80px;
    }
    
    .redes {
        display: flex;
        gap: 32px;
    }

    .redes a {
        text-decoration: none;
        color: #B89265;
    }

    footer h2 {
        margin: 40px 0;
    }
    
    footer button {
        border: solid 2px #B89265;
        background-color: #111;
        font-weight: 600;
        color: #B89265;
        padding: 12px 44px;
        border-radius: 8px;
    }

    .social-button facebook, .social-button instagram, .social-button tiktok {
        /* width: 100px; */
    }
}

@media (min-width: 769px) { /* DESKTOP */

    /*index*/

    .desktop-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #222;
    }

    .desktop-menu ul {
        display: flex;
        list-style: none;
        padding: 16px 24px;
    }

    .desktop-menu li {
        margin: 0px 12px;
        font-weight: 600;
        font-size: 16px;
    }

    .desktop-menu a {
        text-decoration: none;
        color: #f4f4f4;
    }

    .desktop-menu img {
        height: 40px;
        width: 180px;
        margin: 8px 24px;
    }

    .burger-menu, .burger-menu-bar {
        display: none;
    }
    .image-product img {
        width: 100px;
        border-radius: 8px;
    }
    
    h1, h2 {
        text-align: left;
        margin: 16px 16px;
    }

    h1 {
        margin: 42px 16px;
    }
    
    .promos, main, .sabores, .dedos-y-aros {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        margin: auto 16px;
        /* background-color: bisque; */
        align-items: flex-start;
    }

    .redes {
        display: flex;
        gap: 32px;
    }

    .redes a {
        text-decoration: none;
        color: #B89265;
    }

    footer h2 {
        margin: 0;
    }
    
    .disclaimer, footer {	
        text-align: left;
        width: 100%;
        margin: 40px 24px;
    }

    footer {
        margin-bottom: 80px;
    }

    footer button {
        border: solid 2px #B89265;
        background-color: #111;
        font-weight: 600;
        color: #B89265;
        padding: 12px 44px;
        border-radius: 8px;
        margin: 40px 0;
    }
    
    .product {
        display: flex;
        box-sizing: content-box;
        justify-content: space-between;
        background-color: #1a1a1a;
        border-radius: 8px;
        padding: 0px 16px;
        align-items: center;
        margin: 6px 4px;
        width: 520px;
        gap: 4px;
    }
    
    .text-product {
        margin-left: 20px;
        width: 240px;
    }
    
    .price h4 {
        color: #B89265;
        border: solid 2px #B89265;
        padding: 4px 10px;
        border-radius: 8px;
    }
    
    label {
        border: solid 2px rgb(255, 255, 255);
        padding: 4px 10px;
        border-radius: 8px;
    }
    
    .sabores label {
        margin: 4px;
        font-weight: 600;
    }

    #bbq {
        border: solid 2px #e24c4c;
        color: #e24c4c;
    }

    #mango {
        border: solid 2px #e2b84c;
        color: #e2b84c;
    }

    #buffalo {
        border: solid 2px #e2834c;
        color: #e2834c;
    }

    #lemon {
        border: solid 2px #88e24c;
        color: #88e24c;
    }

    #hot {
        border: solid 2px #d82d2d;
        color: #d82d2d;
    }

    #ajo {
        border: solid 2px #d8d8d8;
        color: #d8d8d8;
    }

    #pina {
        border: solid 2px #fdf24f;
        color: #fdf24f;
    }

    #tamarindo {
        border: solid 2px #ec8e21;
        color: #ec8e21;
    }

    #hot-bbq {
        border: solid 2px #e24c4c;
        color: #e24c4c;
    }

    #cajun {
        border: solid 2px #ec5f1d;    
        color: #ec5f1d;
    }

    #extremo {
        border: solid 2px #ffa8a8;
        color: #ffa8a8;
    }
    
    label {
        border: solid 1px black;
        padding: 4px 10px;
        border-radius: 8px;
    }
    
    .sabores label {
        margin: 4px;
    }
    
    .cta {
        padding: 24px 0;
    }

    .cta button {
        font-size: 1.1rem;
        padding: 18px 36px;
    }

    .cta-container {
        gap: 24px;
    }

    .cta #whatsapp {
        background-color: #6ed350;
        font-weight: 600;
        color: #111;
    }

    .cta #domicilio {
        background-color: #B89265;
        font-weight: 600;
        color: #111;
    }

        /*about*/
        .content {
            display: flex;
            flex-direction: row;
            justify-content: center;
            width: 1080px;
            margin: 0 auto;
        }

        .side-1, .side-2 {
            width: 50%;
            justify-self: center;
            align-self: center;
        }

        .side-1 p, .side-2 p, .side-1 h1, .side-2 h1 {
            margin: 20px 60px;
            line-height: 1.5;
        }

        .side-2 img, .side-1 img {
            width: 100%;
            height: 100%;
        }
}

/* Disclaimer Component - Modern Design */
.disclaimer {
    background: linear-gradient(to right, rgba(184, 146, 101, 0.1), rgba(184, 146, 101, 0.2), rgba(184, 146, 101, 0.1));
    margin: 40px auto;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.disclaimer::before {
    content: '💳';
    font-size: 24px;
    margin-right: 16px;
    animation: float 3s ease-in-out infinite;
}

.disclaimer h3 {
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Add subtle animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Hover effect */
.disclaimer:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 146, 101, 0.15);
}

/* Add responsive styles */
@media (min-width: 769px) {
    .disclaimer {
        margin: 60px auto;
        padding: 32px;
    }

    .disclaimer h3 {
        font-size: 1.4rem;
    }

    .disclaimer::before {
        font-size: 28px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .disclaimer {
        margin: 32px 16px;
        padding: 20px;
    }

    .disclaimer h3 {
        font-size: 1.1rem;
    }
}

/* Add payment method icons */
.disclaimer::after {
    content: ''; /* You can add more payment icons here */
    position: absolute;
    right: 24px;
    opacity: 0.6;
}

/* Modern Footer Design */
footer {
    text-align: center;
    background-color: #1a1a1a;
    padding: 60px 24px 120px 24px; /* Extra bottom padding for CTA */
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer h2 {
    color: #B89265;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.footer-subtitle {
    color: #f4f4f4;
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

/* Social Media Specific Styles - Removed the ::before content */
.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5cc8 100%);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effects */
.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-button:active {
    transform: translateY(-1px);
}

/* Button shine effect on hover */
.social-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.social-button:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateX(50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 40px 16px 100px 16px;
        text-align: center;
    }

    footer h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .social-links {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        padding: 0 16px;
    }

    .social-button {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        min-width: unset;
    }
}

/* Safe area handling for modern devices */
@supports (padding: max(0px)) {
    footer {
        padding-bottom: max(120px, env(safe-area-inset-bottom));
    }
}

/* Fix product cards layout */
.product {
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 12px;
    align-items: center;
    margin: 6px 8px;
    width: calc(100% - 16px);
    gap: 8px;
    flex-wrap: nowrap;
}

.image-product {
    flex-shrink: 0;
    width: 100px;
}

.image-product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.text-product {
    flex: 1;
    min-width: 0; /* Prevent text from forcing container width */
    padding: 0 8px;
}

.text-product h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    white-space: normal; /* Allow text to wrap */
}

.text-product p {
    margin: 0;
    font-size: 0.9rem;
    white-space: normal; /* Allow text to wrap */
}

.price {
    flex-shrink: 0;
    padding: 0 8px;
}

/* Fix container widths */
.promos, main, .sabores, .dedos-y-aros, .antojos, .extras {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Fix sabores section */
.sabores {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 8px;
    justify-content: center;
}

.sabores label {
    margin: 4px;
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 4px 8px;
}

/* Section headings */
h1, h2 {
    width: 100%;
    text-align: center;
    padding: 0 16px;
    margin: 24px 0;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .product {
        margin: 6px 0;
        width: 100%;
    }

    .text-product {
        font-size: 0.9rem;
    }

    .price h4 {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Ensure containers don't overflow */
    .promos, main, .sabores, .dedos-y-aros, .antojos, .extras {
        padding: 0 12px;
    }

    /* Adjust navigation for mobile */
    nav {
        width: 100%;
        overflow-x: hidden;
    }

    .burger-menu-bar {
        padding: 16px;
        width: 100%;
    }
}

/* Container max-widths for larger screens */
@media (min-width: 769px) {
    .promos, main, .sabores, .dedos-y-aros, .antojos, .extras {
        max-width: 1200px;
    }

    .product {
        margin: 8px;
    }
}


/* Mobile Menu Styles */
@media (max-width: 768px) {
    .burger-menu-bar {
        /* background-color: #222; */
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .burger-menu-bar label img {
        height: 40px;
        width: auto;
    }

    /* Hide the old burger menu image */
    /* #burger-menu-image {
        display: none;
    } */

    /* Ensure burger icon is visible on mobile */
    /* .burger-icon {
        display: flex;
    }

    .burger-icon .line {
        display: block;
        background-color: #ffffff;
    } */
}

/* Hide burger on desktop */
@media (min-width: 769px) {
    .burger-icon {
        display: none;
    }
}

/* Active state animations */
.burger-menu.active + .burger-icon .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active + .burger-icon .line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active + .burger-icon .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.burger-menu-bar {
    box-sizing: border-box;
    display: flex;
    padding: 16px 8px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #222;
}

.burger-menu-bar label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#burger-menu-image {
    width: 24px;
    height: auto;
    display: block;
}

/* Hide burger menu elements on desktop */
@media (min-width: 769px) { /* Desktop */
    .burger-menu-bar label,
    .burger-menu-bar #burger-menu-image,
    .burger-menu {
        display: none !important; /* Ensure it's hidden on desktop */
    }
}

/* Show burger menu elements only on mobile */
@media (max-width: 768px) { /* Mobile */
    .burger-menu-bar label {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    #burger-menu-image {
        width: 24px;
        height: auto;
        display: block;
    }

    .burger-menu-bar {
        box-sizing: border-box;
        display: flex;
        padding: 16px 8px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: #222;
    }
}

/* Desktop styles - hide burger-menu-bar */
@media (min-width: 769px) {
    .burger-menu-bar {
        display: none !important;
    }
}

/* Mobile styles - show burger-menu-bar */
@media (max-width: 768px) {
    .burger-menu-bar {
        display: flex;
        box-sizing: border-box;
        padding: 16px 8px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: #222;
    }
}