/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(203, 167, 57);
    --secondary-color: rgb(33, 25, 21);
    --naranja: rgb(248, 152, 40);
    --background-color: #fff;
    --text-color: #666;
}

@font-face {
    font-family: 'Caneletter';
    src: url('fonts/Caneletter.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Archivo", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    font-family: "archivo", sans-serif;
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* img {
    max-width: 100%;
    height: auto;
} */

.container {
    width: 80%;
    max-width: 1400px;
    margin: 0 10vw;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 150;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 2vh;
}


.logo img {

    height: 16vh;
}

.main-nav ul {
    display: flex;

    gap: 30px;
}

.main-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon {
    font-size: 20px;
    color: #333;
    transition: color 0.3s;
}
.icon-hero img{
    width: auto;
    height: 7vh;
    margin-right: 8px;
    margin-left: 8px;
}
.cart-icon img {
    width: auto;
    height: 7vh;
    margin-right: 8px;
    margin-left: 8px;
}

.cart-icon:hover {
    color: var(--primary-color);
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 50px;
    padding: 8px 15px;
}

.search-container i {
    color: #777;
    margin-right: 8px;
}

.search-container input {
    background: transparent;
    border: none;
    outline: none;
    width: 120px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    margin-top: -4vh;
    padding: 5vh 0 30px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    /* background-image: url('images/fondos/home.jpg'); */
    background-size: 89% auto;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    /* Mantiene la sección a la altura completa de la ventana */
}

.hero-next{
    right: 6vw;
    top: 50%;
}
.hero-prev{
    top: 50%;
}

.menu-button {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    width: 180px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    /* Botón ovalado */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    padding: 5px 24px;
    border: none;
    border: 3px solid var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    gap: 10px;
    margin-left: 3px;
}

.menu-button:hover,
.menu-button:focus {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

.swal2-container .swal2-center .swal2-backdrop-show {
    border-radius: 20px;
}

/* SweetAlert2 custom styles */
.swal2-title {
    color: #000 !important;
    font-family: 'Caneletter', serif;
    font-size: 3.5rem;
}

.swal2-select {
    border-radius: 25px;
    border: 2px solid #8c8c8c;
    padding: 10px 20px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
}

.swal2-confirm {
    background-color: #fff !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 10px 32px !important;
    border: 5px solid var(--primary-color) !important;
    transition: background 0.3s, color 0.3s, transform 0.2s !important;
        font-family: 'archivo', serif;

}

.swal2-confirm:hover,
.swal2-confirm:focus {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.04) !important;
    outline: none !important;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.mover {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.mover:hover {
 background: #666;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}




.hero h1 {
    font-family: 'Caneletter', serif;
    color: #000;
    font-size: 9.5rem;
    line-height: 0.7;
    margin-top: 2vh;
    margin-bottom: 3Vh;
}

.icon-row img {
    width: auto;
    height: 14vh;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 2vh;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    max-width: 450px;
}

.info-card {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    background-color: #fff;
    width: 70%;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    height: 15vh;
}

.icon-hero {
    border-radius: 50%;
    background-color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

}

/* .icon-circle {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
} */

.hero-image img {
    margin: 0;
}

h3 {
    font-size: 2rem;
    font-family: 'Caneletter', serif;
    color: black;
    padding-left: 10%;
    margin-bottom: 2vh;
    line-height: 0.7;

}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1;

}

.info-text span {
    color: var(--primary-color);
}

.info-text p {
    font-size: .6rem;
    margin-bottom: 0;
    color: var(--secondary-color);
    line-height: 1;
}

.hero-image {
    position: relative;
    z-index: 1;
}





.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    cursor: pointer;
    margin: 0 5px;
    transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease;
    transform-origin: center;
}

.dot.active {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    transform: scale(2.5);
    /* Agranda desde el centro */
}


/* Products Section */
.products {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
    padding: 50px 0;
    padding-top: 15vh;
    background-color: #fff;
    position: relative;
    min-height: 100vh;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/leaf-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.icon-row {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 75vh;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
    background: #fff;
    width: 14%;
    height: 5vh;
    align-items: center;
}


.icon-circle.large {
    width: 60px;
    height: 60px;
    background-color: #fff;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.icon-circle.large:hover {
    transform: scale(1.5);
    /* Aumenta al 150% desde el centro */
}

.products h2 {
    font-family: 'Caneletter', serif;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;

}

.section-divider {
    width: 5vw;
    height: 3px;
    background-color: var(--primary-color);
    margin: -4vh auto 40px;
    position: relative;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    justify-items: center;
}

.product-card {
    background-color: #fff;
    width: 30%;
    padding-bottom: 10%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    height: auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
    padding: auto;
    height: 20vh;
    overflow: hidden;
}

.product-card p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1;

}

.product-card h3 {
    padding: 0%;
}


.product-image img {
    padding: 6%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s;
}

/* .product-card:hover .product-image img {
    transform: scale(1.05);
} */

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    padding-left: 10%;
    margin-bottom: 10px;
}

.product-description {
    border-left: 2px solid #f59e0b;
    padding-left: 10px;
}

.product-description p {
    font-size: 14px;
    color: #666;
}

/* General */
.footer {
    background-color: #000;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
        align-items: baseline;
}

/* Sections */
.footer-section h4 {
    margin-top: 1rem;

    color: var(--primary-color, #cba739);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 160px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.contact-info li {
    font-size: 0.95rem;
}

.footer-links a,
.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.contact-info a:hover {
    color: var(--primary-color, #cba739);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon {
    color: #ffffff;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

.social-icon-nav {
    color: #333;
    font-size: 1.6rem; /* icono más grande */
    background: rgba(255, 255, 255, 0.1);
    width: 3rem; /* círculo más grande */
    height: 3rem;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    text-align: center;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center; /* centra el icono */
}
.social-icon-nav:hover {
    background: var(--primary-color, #cba739);
    color: white;
}
@media (max-width: 600px) {
    .social-icon-nav {
       display: none;
    }
}

.social-icon:hover {
    background: var(--primary-color, #cba739);
    color: #1f1f1f;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}




.whatsapp-float {
    position: fixed;
    bottom: 5vw;
    right: 5vw;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s;
}

.whatsapp-float img:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.catalogo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalogo h1 {
    font-family: 'Caneletter', serif;
    color: #000;
    font-size: 5rem;
    line-height: 0.7;
    margin-bottom: 3Vh;
}

.catalogo .icon-circle {
    float: right;
    margin-right: 2.5vw;
    height: 10vh;
}

.catalogo .icon-circle img {
    height: 10vh;
}

#encabezado {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
    margin-top: 2vh;
    padding: 10px;

    background-color: #fff;
}


.catalogo-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    margin-top: 2vh;
    margin-bottom: 20px;
    width: 80%;
    max-width: 1200px;
    padding: 0 20px;
}


.sidebar-filtros {
    display: flex;
    width: 20%;
    margin-top: 2%;
    margin-bottom: 20px;
    margin-right: 2vw;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.sidebar-filtros h3 {
    color: #000;
    margin-bottom: 1vh;


}

.sidebar-productos {
    width: 70%;

}

.sidebar-filtros select {
    margin-left: 10%;
    width: 100%;
    margin-bottom: 4vh;
}

.sidebar-productos select {

    width: 70%;
}

select {
    border-radius: 25px;
    border: 1px solid #8c8c8c;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.productos-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 10vh;
}

.foto-sede {
    margin-top: 3vh;
    padding: 5%;
    border-radius: 10%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.opciones-producto {
    display: flex;
    justify-content: flex-start;
    margin-top: 2vh;
}

.carrito-container {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #fff;
    border: 2px solid #d4af37;
    padding: 15px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow-y: auto;
}

.carrito-container h3 {
    margin-top: 0;
}

.carrito-container ul {
    list-style: none;
    padding: 0;
}

.carrito-container li {
    margin-bottom: 10px;
}

#linea-vertical {
    display: flex;
    height: 15vh;
    width: 1px;
    background: #d4af37;
    border-radius: 2px;
    z-index: 1;
    margin-top: -3vh;
}

.filtros-catalogo {
    display: flex;
    flex-direction: column;
}

.hero-slide {
    margin-left: 15%;
}

#restaurante {
    text-align: center;
    display: flex;
    width: 35%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 10vh auto;
    justify-content: center;
    align-items: center;
}

#restaurante h1 {
    font-size: 8rem;
    line-height: 0.7;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 1600px) {
#restaurante h1 {
width: 60%;
}
}

#pedidos-restaurante {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#historia {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    margin-top: 5vh;
    margin-bottom: 10vh;
}

#tituloHistoria {
    font-family: 'Caneletter';
    src: url('fonts/Caneletter.otf') format('truetype');
    color: #fff;
    margin-top: 15vh;
}

#tituloHistoria h1 {
    font-size: 8rem;
    margin: 0;
    line-height: 1;
}

#tituloHistoria h2 {
    font-size: 6rem;
    line-height: 0.5;
    margin-bottom: 5vh;
}

#informacionHistoria {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
}

#informacionHistoria p {

    margin-top: 3vh;
    margin-left: 3vw;
    color: #8c8c8c;

    align-content: center;
}

#boletin {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: end;
    width: 100%;
    border-radius: 10px;
    margin: 0;
    margin-top: 15vh;
}

#tituloBoletin {
    text-align: start;
}

#informacionBoletin {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: center;

}
.boletin{
    width: 50vw;
}

#informacionBoletin p {
    text-align: start;
    width: 50%;
}

#informacionBoletin button {
    margin-left: 4%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {


    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero img {
        width: 15vw;
        height: auto;
        margin-bottom: 20px;
        top: 10%;
    }

    /* .hero h1 {
        font-size: 48px;
    } */

    #restaurante h1 {

        font-size: 4rem;
        line-height: 0.7;
    }

    #tituloHistoria h1 {
        font-size: 6rem;
        margin: 0;
        line-height: 1;
    }

    #tituloHistoria h2 {
        font-size: 4rem;
        line-height: 0.5;
        margin-bottom: 5vh;
    }

    .sidebar-productos {
        width: 100%;
    }

}

@media (max-width: 768px) {
 
    .slider-dots {

        margin-top: 5vh;
        height: 5vh;
        margin-left: 0;
        width: 20%;
    }

.hero-next{
    right: 16vw;
    top: 60%;
}
.icon-row img{
    width: auto;
    height: 10vh;
}
.hero-prev{
    top: 60%;
}
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .products {
        margin: 0;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .description {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(40vw, 2fr));
        width: 90vw;
        margin: 0 auto;
        justify-items: center;
    }

    .panapanaderia-section {
        width: 100vw;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        text-align: center;
    }

    .hero-slide {
        margin-left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #historia {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

    }

    #historia h1 {
        font-size: 7rem;
        line-height: 1;

    }

    #historia h2 {
        font-size: 4rem;
        line-height: 0.8;
        margin-left: 5vw;

    }

    #informacionHistoria {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #boletin {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: end;
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        margin: 0;
        height: 90vh;
    }
    .boletin {
        width: 80vw;
    }

    #tituloBoletin {
        text-align: center;

    }

    #tituloBoletin h1 {
        font-size: 5rem;
    }

    #informacionBoletin {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #informacionBoletin p {
        text-align: center;
        width: 65%;
        line-height: 1;
    }

    #informacionBoletin button {
        margin-left: 4%;
    }

    #descubreCatalogo {
        width: 80%;
        font-size: 1.4rem;
        margin-left: 8vw;
        line-height: 1.2;
        margin-bottom: 2vh;
    }
#restaurante{
    width: 50%;
}
    #restaurante h1 {
        width: 50%;
        color: #8c8c8c;
    }
    .info-text {
        text-align: left;
    }

    .hero-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 100%;
    }

    #tradicion {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        margin: 0;
        margin-top: 5vh;
    }

    .sidebar-filtros select {
        width: 80%;
    }
}

@media (max-width: 600px) {

    .header-icons .search-container {
        display: none;
    }

    .hero {
        display: flex;
        align-content: center;
        background-image: none;
        flex-direction: column;
        align-items: center;

    }

    #restaurante {
        width: 100%;
        height: 90vh;
    }

    #restaurante p {
        width: 70%;
        color: #8c8c8c;
    }

    #restaurante .menu-button {
        
        margin-bottom: 2vh;
        margin-top: 0;
        line-height: 0.8;
    }

    #restaurante h1 {
        width: 70%;
        font-size: 5rem;
        line-height: 0.7;
    }

    #pedidos-restaurante {
        flex-direction: column;
        align-items: center;

        justify-content: space-around;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .delivery-info {
        align-items: center;
    }

    .hero-slide :active {
        margin: 0;
    }

    .info-card {
        width: 80%;

    }

    .info-card img {
        width: 20vw;
    }


    .whatsapp-float {
        position: fixed;
        bottom: 10vw;
        right: 5vw;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-dots {

        margin-top: 5vh;
        height: 5vh;
        margin-left: 0;
        width: 50%;
    }

    .hero h1 {
        font-size: 6rem;
    }

    .icon-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 65%;
        margin-bottom: 2vh;
    }

    .icon-circle.large img {
        width: auto;
        height: 8vh;
        font-size: 18px;
    }

    .products h2 {
        font-size: 3rem;


    }

    .product-card p {
        width: 90%;

    }

    .main-nav.mobile-open {
        display: flex !important;
        position: absolute !important;
        top: 18vh !important;
        left: 0 !important;
        width: 100vw !important;
        flex-direction: column !important;
        background: #fff !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
        z-index: 1000 !important;
    }

    .main-nav.mobile-open ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .productos-lista {
        display: flex;
        flex-direction: column;
    }

    .catalogo-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        align-items: center;
        margin-top: 0;
        width: 100%;

    }

    #linea-vertical {
        display: none;
    }

    .foto-sede {
        display: none;
    }

    #clase-producto {

        margin-bottom: 0%;
    }

    .sidebar-filtros {
        width: 100%;
    }

    .catalogo h1 {
        font-size: 3rem;
    }

    #encabezado {
        flex-direction: column;
        width: 100%;
    }




    .filtros-catalogo {
        display: flex;
        flex-direction: row;
    }
}

/* ==================== ESTILOS PARA GESTIÓN DE PRODUCTOS ==================== */

/* Grid de checkboxes para sedes y categorías */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-height: 300px;
    overflow-y: auto;
}

/* Items individuales de checkbox */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: white;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 40px;
}

.checkbox-item:hover {
    background-color: #f0f8ff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.checkbox-item label {
    cursor: pointer;
    font-size: 14px;
    color: #333;
    flex-grow: 1;
    margin: 0;
    user-select: none;
}

.checkbox-item input[type="checkbox"]:checked + label {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 8px;
        padding: 10px;
    }
    
    .checkbox-item {
        padding: 6px 10px;
        min-height: 36px;
    }
    
    .checkbox-item label {
        font-size: 13px;
    }
}