:root {
     --color-pan-red: #e08d8d;
     --color-pan-green: #9bc49b;
     --color-pan-yellow: #f4c45d;
     --color-bg-pink: #fff0f0;
     --color-bg-green: #f2f8f2;
     --color-bg-yellow: #fff9ea;
     --color-bg-white: #ffffff;
     --color-text-primary: #5c3d2e;
     --color-text-secondary: #8c5e35;
     --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     font-family: var(--font-sans);
     color: var(--color-text-primary);
     background-color: var(--color-bg-white);
     line-height: 1.6;
     min-height: 100vh;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: color 0.3s ease;
 }

 a:focus-visible,
 button:focus-visible {
     outline: 3px solid var(--color-pan-yellow);
     outline-offset: 4px;
 }

 ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 button {
     font-family: inherit;
     border: none;
     background: none;
     cursor: pointer;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
 }

.section-title-sm {
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1;
}

.section-title-sm::before {
    content: "";
    width: 28px;
    height: 2px;
    background-color: currentColor;
    opacity: 0.35;
}

.section-title-lg {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 0.15rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
    .hero .section-title-lg {
        text-align: center;
        margin-top: 0.45rem;
        margin-bottom: 0.75rem;
        }
    }
 .lang-es {
     display: none;
 }

 body.show-es .lang-en {
     display: none;
 }

 body.show-es .lang-es {
     display: inline;
 }

 .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     border: 0;
 }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn:hover,
.btn.is-pressed {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--color-pan-red);
    color: white;
}

.btn-primary:hover {
    background-color: #d67b7b;
}

.btn-secondary {
    background-color: var(--color-pan-yellow);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background-color: #e0b050;
}

.btn-accent {
    background-color: var(--color-pan-green);
    color: white;
}

.btn-accent:hover {
    background-color: #8ab38a;
}

.logo-mark {
    height: clamp(6rem, 9vw, 8rem);
    width: auto;
    display: block;
    object-fit: contain;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.footer-logo .logo-mark {
    height: clamp(6rem, 9vw, 8rem);
    margin-right: 1rem;
}

.top-bar {
    background-color: var(--color-text-primary);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-item a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.top-bar-hours {
    margin-left: auto;
    text-align: right;
}

.top-bar-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-social .icon {
    width: 1rem;
    height: 1rem;
    color: var(--color-bg-white);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.top-bar-social a:hover .icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row; /* Keep items in a row */
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: space-between;
        width: 100%;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-hours, .top-bar-social {
        flex-shrink: 0;
    }
}

 .navbar {
     position: sticky;
     top: 0;
     height: 90px;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 var(--padding-container);
     background-color: var(--color-bg-white);
     border-bottom: 4px solid var(--color-pan-red);
     width: 100%;
 }

 .logo-box {
     display: inline-flex;
     align-items: center;
     color: var(--color-text-primary);
     font-weight: 900;
     text-transform: uppercase;
     line-height: 1;
     font-size: 2.2rem;
     letter-spacing: -0.02em;
     /* Make space for the absolutely positioned logo */
     padding-left: 80px;
 }

 /* Position the header logo absolutely to not affect header height */
 .navbar .logo-mark {
     position: absolute;
     left: 0;
     top: 62%;
     transform: translateY(-50%);
     height: 120px; /* Make it large */
     width: auto;
     /* Add a subtle drop shadow to lift it off the page */
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
 }

 .logo-box span {
     display: block;
     font-size: 0.65rem;
     color: var(--color-pan-green);
     letter-spacing: 0.1em;
     font-weight: 700;
 }

 .logo-icon {
     width: 2rem;
     height: 2rem;
     margin-right: 0.5rem;
     fill: var(--color-pan-red);
 }

.nav-links {
    display: none;
    gap: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

 .nav-links a:hover {
     color: var(--color-pan-red);
 }

 .nav-right-container {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     padding-right: 10px;
 }

 .lang-toggle-btn {
     background: transparent;
     border: 2px solid var(--color-text-primary);
     border-radius: 2rem;
     padding: 0.25rem;
     display: flex;
     align-items: center;
     width: 4rem;
     height: 2rem;
     position: relative;
 }

 .lang-toggle-thumb {
     width: 1.25rem;
     height: 1.25rem;
     background-color: var(--color-text-primary);
     border-radius: 50%;
     transition: transform 0.3s ease;
 }

 body.show-es .lang-toggle-thumb {
     transform: translateX(2rem);
 }

 .lang-toggle-text {
     position: absolute;
     font-size: 0.65rem;
     font-weight: 800;
     top: 50%;
     transform: translateY(-50%);
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 0 0.5rem;
     pointer-events: none;
     color: var(--color-text-primary);
 }

 .menu-toggle {
     background: none;
     border: none;
     padding: 0.35rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .menu-toggle .icon,
 .social-icons .icon {
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 400px;
}

.header-progress {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 102;
    pointer-events: none;
    overflow: hidden;
}

.header-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--color-pan-red), var(--color-pan-yellow), var(--color-pan-green));
    width: 0;
    transition: width 0.1s linear;
}

.footer {
    background-color: var(--color-text-primary);
    color: var(--color-bg-pink);
    padding: 6rem 0 3rem;
    position: relative;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: -1rem !important;
}

.footer-logo .logo-mark {
    width: auto;
    height: clamp(6rem, 9vw, 8rem);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-logo .logo-mark {
        margin-top: -4rem !important;
        margin-bottom: -1rem !important;
        height: clamp(12rem, 15vw, 12rem);
    }
    .footer-copy {
        padding-right: 2rem;
    }
    .footer-info {
        display: none;
    }
}

.footer-logo span {
    display: block;
    font-size: 0.65rem;
    color: var(--color-pan-green);
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-copy {
    opacity: 0.9;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: white;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-pan-yellow);
}

.footer-grid > div:nth-child(3) .footer-heading {
    color: var(--color-pan-green);
}

.footer-grid > div:nth-child(4) .footer-heading {
    color: var(--color-pan-red);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons svg {
    width: 1.75rem;
    height: 1.75rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    color: var(--color-pan-yellow);
}

.social-icons svg:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 0.75rem;
    cursor: pointer;
    opacity: 0.9;
    transition: color 0.3s;
    font-weight: 500;
    color: white;
}

.footer-links li:hover {
    color: var(--color-pan-yellow);
    opacity: 1;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact .icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--color-pan-green);
}

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

.gallery-item {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    height: 280px;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 350px;
}

.pan-item {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pan-item.red {
    background-color: var(--color-pan-red);
}

.pan-item.green {
    background-color: var(--color-pan-green);
}

.pan-item.yellow {
    background-color: var(--color-pan-yellow);
}

.copyright {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
    color: white;
}

.footer-credits {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-credits a {
    color: var(--color-pan-yellow);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .footer-grid > div:first-child,
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
        gap: 2rem;
    }
}

#go-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-pan-yellow);
    color: var(--color-text-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#go-top:hover {
    background-color: var(--color-pan-red);
    color: white;
    transform: translateY(-2px);
}

 .icon {
     width: 24px;
     height: 24px;
     stroke: currentColor;
     fill: none;
 }

 [data-animate-on-scroll] {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 [data-animate-on-scroll].is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .is-pressed {
     transform: scale(0.97);
 }

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .logo-box {
        flex-shrink: 0;
    }

    .nav-right-container {
        flex-shrink: 0;
    }

    .menu-toggle,
    .mobile-menu {
        display: none !important;
    }
}

/* Hide desktop order button on mobile */
@media (max-width: 768px) {
    .desktop-actions {
        display: none;
    }

    .logo-box {
        font-size: 1.5rem; /* Smaller font size for mobile */
        padding-left: 70px; /* Adjust padding for mobile logo position */
    }

    .logo-box span {
        font-size: 0.7rem;
    }

    .navbar .logo-mark {
        height: 100px; /* Slightly smaller logo on mobile */
    }

    .top-bar {
        padding: 0.5rem 1rem; /* Set padding for the edges here */
    }

    .top-bar-content.container {
        padding: 0; /* Override .container padding to be flush */
        max-width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-hours, .top-bar-social {
        flex-shrink: 0; /* Prevent items from shrinking and wrapping */
    }

    .top-bar-hours {
        margin-left: 0;
        text-align: left;
    }
}

.torn-top, .torn-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}
.torn-top {
    top: -1px; /* Overlap slightly */
    transform: rotate(180deg);
}
.torn-bottom {
    bottom: -1px;
}
.torn-svg {
    width: 100%;
    height: 50px;
    fill: var(--color-bg-white); 
}

.torn-top .torn-svg { fill: var(--color-bg-yellow); }
.torn-bottom .torn-svg { fill: var(--color-bg-white); }

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.wave-bottom svg {
    width: 100%;
    height: 50px;
    /* Changed to white to match the next section */
    fill: var(--color-bg-white);
}