/* Fuente Apollo */
@font-face {
    font-family: 'Apollo';
    src: url('fonts/APOLLO.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apollo';
    src: url('fonts/APOLLOItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Variables CSS */
:root {
    --primary-color: #6E1512;
    --primary-light: #8B2A23;
    --background-beige: #FFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(110, 21, 18, 0.1);
}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-beige);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Main Image Section (Header + Hero combinados) */
.main-image-section {
    width: 100%;
    margin-bottom: 0;
}

.main-menu-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Additional Service Section */
.additional-service {
    margin: 20px 10px;
    overflow: hidden;

}

.service-header {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8px 6px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    max-width: 329px;

    margin: 0 auto;
}

.service-content {
    background-color: var(--white);
    padding: 15px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    padding-bottom: 0;
}

.service-text {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
    flex: 1;
    font-family: 'Apollo', serif;
}

.service-price {
    font-size: 12px !important; 
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Menu Section */
.menu-section {
    padding: 0px 0 40px 0;
   padding-bottom: 0;
}

.menu-item {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
}

.menu-item-container {
    margin: 0
}

.menu-item:first-child {
    border-top: 1px solid #F1EAE3;
}

.menu-item {
    border-bottom: 1px solid #F1EAE3;
}

.menu-item-header {
    background-color: var(--white);
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.menu-item-title {
    font-family: 'Apollo', 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 400;
    padding: 0;
    width: 81px;
    height: 24px;
    display: flex;
    font-family: 'Montserrat', serif;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(0% 0%, 100% 0%, 85% 50%, 100% 100%, 0% 100%, 15% 50%);
}

.nuevo-badge {
    background-color: #dc3545;
    color: var(--white);
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    width: 65px;
    height: 21px;
    font-family: 'Montserrat', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 5px;
}

.reversionada-badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 400 !important;
    padding: 5px 10px;
    width: 103px;
    height: 21px;
    font-family: 'Montserrat', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vegano-badge {
    background-color: #198754;
    color: var(--white);
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    width: 65px;
    height: 21px;
    font-family: 'Montserrat', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 5px;
}

.sintacc-badge {
    background-color: #ffc107;
    color: #000000;
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    width: 65px;
    height: 21px;
    font-family: 'Montserrat', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 5px;
}

.menu-item-price {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.menu-item-content {
    padding: 0px 5px;
}

.menu-item-description {
    color: #000000;
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 5px;
    max-width: 260px;
}

.menu-item-description .subtitle {
    color: var(--primary-color);
    font-weight: 700;
}

.menu-item-options {
    list-style: none;
    padding: 0;
    max-width: 260px;
}

.menu-item-options li {
    color: #000000;
    font-size: 10px;
    margin-bottom: 0px;
    padding-left: 12px;
    position: relative;
    line-height: 1.1;
}

.menu-item-options li:before {
    content: "";
    background-color: var(--primary-color);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 4px;
}

.menu-item-options.bullet-style li:before {
    content: "•";
    background-color: transparent;
    width: auto;
    height: auto;
    color: #000000;
    font-size: 10px;
    top: 0px;
}

/* Menu Navigation Styles */
.menu-navigation {
    background-color: #F1EAE3;
    height: 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.nav-buttons-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-buttons-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.nav-buttons {
    display: flex;
    gap: 12px;
    min-width: max-content;
    height: 100%;
    align-items: center;
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: transparent;
    border: none;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: max-content;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    height: 40px;
    position: relative;
}

.nav-button:hover {
    color: #000000 !important;
}

.nav-button-indicator {
    width: 100%;
    height: 5px;
    background-color: white;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

/* Estados activos - definición única */
.nav-button.active {
    color: #000000 !important;
    font-weight: 700 !important;
}

.nav-button.active .nav-button-indicator {
    background-color: #6E1512 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-navigation {
        height: 40px;
    }
    
    .nav-buttons-container {
        padding: 0 15px;
    }
    
    .nav-button {
        padding: 4px 10px;
        font-size: 12px;
        min-width: 90px;
        height: 40px;
    }
    
    .nav-button-indicator {
        width: 100%;
        height: 5px;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .nav-buttons-container {
        padding: 0 10px;
    }
    
    .nav-button {
        padding: 4px 8px;
        font-size: 12px;
        min-width: 80px;
        height: 40px;
    }
    
    .nav-button-indicator {
        margin-bottom: 2px;
    }
}


/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.3s; }

/* Section Container */
.section-container {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Los Clásicos Section */
.clasicos-section {
    margin: 0;
    position: relative;
}

.clasicos-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.clasicos-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.clasicos-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 143px;
    background: linear-gradient(to top, rgba(241, 234, 227, 1) 20%, rgba(241, 234, 227, 0) 100%);
    pointer-events: none;
}

.clasicos-header {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 400;
    letter-spacing: 0.2px;
    width: 295px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.clasicos-products {
    background-color: var(--white);
    padding: 30px 0 0 0;
    
    position: relative;
    z-index: 1;
}

.clasicos-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
   
    border-bottom: 1px solid #F1EAE3;
}

.clasicos-product:first-child {
    border-top: 1px solid #F1EAE3;
}

.clasicos-product-header {
    background-color: var(--white);
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.clasicos-product-title {
    font-family: 'Apollo', 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clasicos-product-price {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.clasicos-product-content {
    padding: 0px 5px;
}

.clasicos-product-description {
    color: #000000;
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 5px;
    max-width: 260px;
}

.menu-item:nth-child(5) { animation-delay: 0.4s; }
.menu-item:nth-child(6) { animation-delay: 0.5s; }

/* Exquisiteces de la Casa Section */
.exquisiteces-section {
    margin: 0;
    position: relative;
}

.exquisiteces-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.exquisiteces-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.exquisiteces-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(241, 234, 227, 1) 10%, rgba(241, 234, 227, 0.7) 20%, rgba(241, 234, 227, 0) 100%);
    pointer-events: none;
}

.exquisiteces-header {
    position: absolute;
    top: -50px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 120px ;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(241, 234, 227, 0) 0%, rgba(241, 234, 227, 0.8) 40%, rgba(241, 234, 227, 1) 70%, rgba(241, 234, 227, 1) 100%);
}

.exquisiteces-header img {
    width: 200px;
    height: 60.6px;
    margin: 0 auto;
}

.exquisiteces-products {
    background-color: var(--white);
    padding: 90px 0 0 0;
    position: relative;
    z-index: 1;
}

.exquisiteces-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid #F1EAE3;
}

.exquisiteces-product:first-child {
    border-top: 1px solid #F1EAE3;
}

.exquisiteces-product-header {
    background-color: var(--white);
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.exquisiteces-product-title {
    font-family: 'Apollo', 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;


}

.exquisiteces-product-price {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.exquisiteces-product-content {
    padding: 0px 5px;
}

.exquisiteces-product-description {
    color: #000000;
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 5px;
    max-width: 260px;
}

/* Sin T.A.C.C. Section */
.sintacc-section {
    margin: 0;
    position: relative;
}

.sintacc-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.sintacc-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}

.sintacc-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(110, 21, 18, 1) 10%, rgba(110, 21, 18, 0.7) 20%, rgba(110, 21, 18, 0) 100%);
    pointer-events: none;
}

.sintacc-header {
    position: absolute;
    top:-50px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background: linear-gradient(to bottom, rgba(110, 21, 18, 0) 0%, rgba(110, 21, 18, 0.8) 40%, rgba(110, 21, 18, 1) 70%, rgba(110, 21, 18, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    border-radius: 0;
    height: 100px;
    z-index: 20;
}

.sintacc-header img {
    width: 270px;
    height: 61.36px;
    margin: 0 auto;
    margin-top: -20px;
}

.sintacc-products {
    background-color: #6E1512;
    padding: 60px 10px 30px 10px;
    position: relative;
    z-index: 1;
    width: 100vw;
    left: 50%;
    right: 50%;
   
    margin-left: -50vw;
    margin-right: -50vw;
}

.sintacc-product {
    background-color: #6E1512;
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid #F1EAE3;
  
    margin: 0 auto;
 
 
}

.sintacc-product:first-child {
    border-top: 1px solid #F1EAE3;
  
}

.sintacc-product:last-child {
    border-bottom: 1px solid #F1EAE3;
   
}

.sintacc-product-header {
    background-color: #6E1512;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.sintacc-product-title {
    font-family: 'Apollo', serif;
    font-size: 16px;
    font-weight: 400 ;
    color: white;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;
}

.sintacc-product-price {
    font-size: 12px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: white;
    background-color: transparent;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid white;
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sintacc-product-content {
    padding: 0px ;
}

.sintacc-product-description {
    color: white;
    font-size: 10px;
    line-height: 1.1;
    margin-bottom: 5px;
    max-width: 260px;
    margin-top: -10px;
}

.gluten-free-badge {
    width: 30px;
    height: 33px;
    object-fit: contain;

}

/* Bebidas & Cafetería Section */
.bebidas-section {
    margin: 0;
    position: relative;
}

.bebidas-header {
    background-color: var(--white);
    padding: 20px 0 10px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.bebidas-header img {
    width: 240px;
    height: 72.73px;
    object-fit: contain;
    margin: 0 auto;
}

.bebidas-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.bebidas-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.bebidas-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(241, 234, 227, 1) 10%, rgba(241, 234, 227, 0.7) 20%, rgba(241, 234, 227, 0) 100%);
    pointer-events: none;
}

.bebidas-products {
   
    padding:  0;
    position: relative;
    z-index: 1;
}

.bebidas-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid #F1EAE3;
  
    margin: 0 auto;
}


.bebidas-product:last-child {
    border-bottom: 1px solid #F1EAE3;
}

.bebidas-product-header {
    background-color: var(--white);
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.bebidas-product-title {
    font-family: 'Apollo', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;
}

.bebidas-product-price {
    font-size: 12px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.bebidas-product-content {
    padding: 0px;
}

.bebidas-product-description {
    color: #6E1512;
    font-size: 10px;
    line-height: 1.1;
    margin-bottom: 5px;
    max-width: 260px;
    margin-top: -10px;
}

/* Header overlay específico para bebidas sobre la imagen */
.bebidas-header-overlay {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    z-index: 20;
}

.bebidas-header-overlay img {
    width: 280px;
    height: 105px;
    object-fit: contain;
    margin: 0 auto;
}

/* Elemento JARRAS para sección bebidas */
.bebidas-jarras {
    background-color: #6E1512;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 10px auto;
    border-radius: 10px;
    width: 295px;
    position: relative;
    z-index: 10;
    margin-top: -10px;
}

/* Los elegidos de la familia Section */
.elegidos-section {
    margin: 0;
    position: relative;
}

.elegidos-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.elegidos-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.elegidos-header {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
}

.elegidos-header img {
    width: 217px;
    height: 57px;
    object-fit: contain;
    margin: 0 auto;
}

.elegidos-products {
    background-color: var(--white);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.elegidos-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid #F1EAE3;

    margin: 0 auto;
}



.elegidos-product:last-child {
    border-bottom: 1px solid #F1EAE3;
}

.elegidos-product-header {
    background-color: var(--white);
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.elegidos-product-title {
    font-family: 'Apollo', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 260px;
}

.elegidos-product-price {
    font-size: 12px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.elegidos-product-content {
    padding: 0px;
}

.elegidos-product-description {
    color: #6E1512;
    font-size: 10px;
    line-height: 1.1;
    margin-bottom: 5px;
    max-width: 260px;
    margin-top: -10px;
}

/* Bebidas Clásicas Section */
.cafe-section {
    margin: 0;
    
    position: relative;
}

.cafe-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.cafe-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.cafe-products {
   
    padding: 0;
    position: relative;
    z-index: 1;
}

.cafe-header {
    background-color: #6E1512;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 10px auto;
    border-radius: 10px;
    width: 295px;
    position: relative;
    z-index: 10;
    margin-top: -10px;
}

.cafe-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
   
    margin: 0 auto;
    padding: 15px 0;
}

.cafe-product-line {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5px;
    width: 100%;
}

.cafe-product-title {
    font-family: 'Apollo', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    background-color: var(--white);
    position: relative;
    flex-shrink: 0;
    order: 1;
    padding-right: 10px;
}

.cafe-product-price {
    font-size: 12px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    order: 3;
    padding-left: 10px;
}

.cafe-product-line::before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--primary-color);
    order: 2;
}

/* Sandwiches Anabelisimos Section */
.sandwiches-section {
    margin: 0;
    position: relative;
}

.sandwiches-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.sandwiches-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.sandwiches-header {
    background-color: #6E1512;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 10px auto;
    border-radius: 10px;
    width: 295px;
    position: relative;
    z-index: 10;
    margin-top: -10px;
}

.sandwiches-products {
    
    padding: 0px 0px 60px 10px;
    position: relative;
    z-index: 1;
}

.sandwiches-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid #F1EAE3;
    margin: 0 auto;
}

.sandwiches-product:last-child {
    border-bottom: 1px solid #F1EAE3;
}

.sandwiches-product-header {
    background-color: var(--white);
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.sandwiches-product-title {
    font-family: 'Apollo', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 260px;
}

.sandwiches-product-price {
    font-size: 12px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sandwiches-product-content {
    padding: 0px;
}

.sandwiches-product-description {
    color: #6E1512;
    font-size: 10px;
    line-height: 1.1;
    margin-bottom: 5px;
    max-width: 260px;
    margin-top: -10px;
}

.vegan-badge {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 5px;
}

.sandwiches-footer-note {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background-color: #F1EAE3;
    color: var(--primary-color);
    font-family: 'Montserrat', serif;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 10px;
    width: 186px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 10;
}

/* Tradiciones Saladas Section */
.tradiciones-section {
    margin: 0;
    position: relative;
}

.tradiciones-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.tradiciones-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.tradiciones-header {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
}

.tradiciones-header img {
    width: 153px;
    height: 124px;
    object-fit: contain;
    margin: 0 auto;
}

.tradiciones-products {
    background-color: var(--white);
    padding: 20px 0px;
    position: relative;
    z-index: 1;
}

.tradiciones-product {
    background-color: var(--white);
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid #F1EAE3;
    margin: 0 auto;
}

.tradiciones-product:last-child {
    border-bottom: 1px solid #F1EAE3;
}

.tradiciones-product-header {
    background-color: var(--white);
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.tradiciones-product-title {
    font-family: 'Apollo', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 260px;
}

.tradiciones-product-price {
    font-size: 12px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.tradiciones-product-content {
    padding: 0px;
}

.tradiciones-product-description {
    color: #6E1512;
    font-size: 12px;
    line-height: 1.1;
    margin-bottom: 5px;
    max-width: 260px;
    margin-top: -10px;
}

/* Almuerzos Section */
.almuerzos-section {
    margin: 0;
    position: relative;
}

.almuerzos-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.almuerzos-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.almuerzos-overlay-header {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    color: white;
    width: 55%;
}

.almuerzos-title {
    font-family: 'Apollo', serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0;

    color: white;

}

.almuerzos-subtitle {
    font-family: 'Montserrat', serif;
    font-size: 12px;
    font-weight: 400;
    margin:0;
    color: white;

    line-height: 1.2;
}


.almuerzos-products {
    background-color: var(--white);
    padding: 3px 0px;
    position: relative;
    z-index: 1;
}

.almuerzos-menu-item {
    margin: 0 auto;
    max-width: 351px;
    margin-bottom: 20px;
}

/* Menú del día */
.almuerzos-special {
    background-color: #6E1512;
    border-radius: 0 0 20px 20px;
    padding: 15px 20px;
    margin-bottom: 30px;
    height: 52px;
    display: flex;
    align-items: center;
}

.almuerzos-menu-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.almuerzos-menu-title {
    font-family: 'Apollo', serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
    flex-shrink: 0;
    order: 0;
}

.almuerzos-menu-price {
    font-size: 12px;
    font-weight: 400;
    color: white;
    background-color: transparent;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid white;
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    order: 2;
}

.almuerzos-menu-line::before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: white;
    margin: 0 15px;
    order: 1;
}

/* Menú Express */
.almuerzos-express-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 0;
}

.almuerzos-express-title {
    font-family: 'Apollo', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    flex-shrink: 0;
    order: 0;
}

.almuerzos-express-price {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    order: 2;
}

.almuerzos-express-header::before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 15px;
    order: 1;
}

.almuerzos-express-subtitle {
    font-family: 'Montserrat', serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 5px 0;
    text-align: left;
}

.almuerzos-options-list {
    list-style: none;
    padding: 0;
    margin: 5px 2px;
}

.almuerzos-option-item {
    font-family: 'Apollo', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.almuerzos-option-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 0;
}

.almuerzos-vegan-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-left: 8px;
}

.almuerzos-footer-note {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding:10px 15px;
    margin: 20px;
    font-family: 'Montserrat', serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}

.almuerzos-footer-note strong {
    font-weight: 700;
}

/* Menú Pasta del día */
.almuerzos-pasta {
    background-color: #6E1512;
    border-radius: 0 0 20px 20px;
    padding: 15px 10px;
    margin-bottom: 30px;
    min-height: 52px;
}

.almuerzos-pasta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5px;
}

.almuerzos-pasta-title {
    font-family: 'Apollo', serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
    flex-shrink: 0;
    order: 0;
}

.almuerzos-pasta-price {
    font-size: 12px;
    font-weight: 400;
    color: white;
    background-color: transparent;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid white;
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    order: 2;
}

.almuerzos-pasta-header::before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: white;
    margin: 0 15px;
    order: 1;
}

.almuerzos-pasta-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.almuerzos-pasta-option {
    font-family: 'Apollo', serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.almuerzos-pasta-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 0;
}

/* Bowls Section */
.bowls-section {
    margin: 0;
    position: relative;
}

.bowls-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.bowls-bg-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.bowls-content {
    background-color: var(--white);
    padding: 30px 0px;
    position: relative;
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
}

.bowls-header {
    text-align: left;
    margin-bottom: 30px;
}

.bowls-header-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bowls-title {
    font-family: 'Apollo', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    flex-shrink: 0;
    order: 0;
    line-height: 1.1;
}

.bowls-price {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 72px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    order: 2;
}

.bowls-header-line::before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 15px;
    order: 1;
}

.bowls-subtitle {
    font-family: 'Montserrat', serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    text-align: left;
}

.bowls-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bowls-item {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #F1EAE3;
}



.bowls-item-title {
    font-family: 'Apollo', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.bowls-item-description {
    font-family: 'Montserrat', serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    max-width: 300px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 20px;
    margin-top: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    box-sizing: border-box;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 5px;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-handle {
    font-family: 'Montserrat', serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.footer-website {
    font-family: 'Montserrat', serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}



