/* ===== GOOGLE FONTS: Lato ===== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    padding-bottom: 60px;
}

.hidden {
    display: none !important;
}


/* ===== NOTIFICACIÓN DE CARRITO ===== */

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideIn 0.3s, fadeOut 0.5s 2s forwards;
    font-family: 'Lato', 'Segoe UI', sans-serif;
    text-align: center;
    max-width: 300px;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}


/* ===== WHATSAPP BUTTON STYLING ===== */

.btn-whatsapp img {
    width: 40px;
    height: auto;
    display: block;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.btn-whatsapp:hover img {
    transform: scale(1.1);
}


/* ===== HEADER ===== */

.header-estandar {
    height: 90px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-contenido {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

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


/* ===== WHATSAPP BUTTON STYLING ===== */

.btn-whatsapp img {
    width: 40px;
    height: auto;
    display: block;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.btn-whatsapp:hover img {
    transform: scale(1.1);
}

.acciones-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-whatsapp {
    font-size: 28px;
    text-decoration: none;
    color: #25D366;
}


/* ===== HERO PARALLAX ===== */

.hero-parallax {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.caption {
    max-width: 800px;
    padding: 20px;
}

.title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 4.2em;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

.text {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}


/* ===== SECCIONES ===== */

.productos-seccion {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.productos-seccion h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
    color: #2c3e50;
}

.carrusel-section {
    margin: 40px auto;
    padding: 0 20px;
}

.carrusel-section .carrusel-container {
    max-width: 100%;
}


/* ===== TARJETAS ===== */

.listProduct {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.listProduct .item,
.carrusel .item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: transform 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    animation: fadeInCards 0.6s ease forwards;
    transform: translateY(20px);
}

.listProduct .item:nth-child(1) {
    animation-delay: 0.05s;
}

.listProduct .item:nth-child(2) {
    animation-delay: 0.1s;
}

.listProduct .item:nth-child(3) {
    animation-delay: 0.15s;
}

.listProduct .item:nth-child(4) {
    animation-delay: 0.2s;
}

.listProduct .item:nth-child(5) {
    animation-delay: 0.25s;
}

.listProduct .item:nth-child(6) {
    animation-delay: 0.3s;
}

.listProduct .item:nth-child(7) {
    animation-delay: 0.35s;
}

.listProduct .item:nth-child(8) {
    animation-delay: 0.4s;
}

.listProduct .item:nth-child(9) {
    animation-delay: 0.45s;
}

.listProduct .item:nth-child(10) {
    animation-delay: 0.5s;
}

.listProduct .item:nth-child(11) {
    animation-delay: 0.55s;
}

.listProduct .item:nth-child(12) {
    animation-delay: 0.6s;
}

.listProduct .item:nth-child(13) {
    animation-delay: 0.65s;
}

.listProduct .item:nth-child(14) {
    animation-delay: 0.7s;
}

.listProduct .item:nth-child(15) {
    animation-delay: 0.75s;
}

.listProduct .item:nth-child(16) {
    animation-delay: 0.8s;
}

@keyframes fadeInCards {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.listProduct .item:hover,
.carrusel .item:hover {
    transform: translateY(-5px);
}

.listProduct .item img.imagen-principal,
.carrusel .item img.imagen-principal {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: zoom-in;
}


/* ===== MINIATURAS - CON SCROLL ===== */

.miniaturas {
    display: flex;
    justify-content: space-between;
    /* primera a la izq, última a la der */
    align-items: center;
    gap: 6px;
    /* opcional, espacio entre miniaturas */
    padding: 10px 0;
    background: #f1f1f1;
    border-radius: 8px;
    max-width: 100%;
    /* se ajusta al ancho del contenedor */
    overflow-x: hidden;
    /* ya no hace falta scroll */
}

.miniaturas img {
    flex: 0 0 auto;
    /* evita que se estiren */
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
}

.item .miniaturas {
    max-width: 100%;
    /* se ajusta al ancho del .item (que contiene la imagen principal) */
    margin: 0 auto;
}

.miniaturas::-webkit-scrollbar {
    height: 4px;
}

.miniaturas::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.miniaturas::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 2px;
}

.miniaturas img.activo {
    border-color: #3498db;
}

.listProduct .item h2,
.carrusel .item h2 {
    font-weight: 500;
    font-size: 1.1em;
    margin: 10px 0;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ===== BOTONES DE PRECIO DOBLE ===== */

.precios-doble {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-precio {
    flex: 1;
    padding: 10px 8px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
}

.btn-precio .tipo {
    display: block;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.btn-precio .precio {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.lamina-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.lamina-btn:hover {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

.cuadro-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.cuadro-btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}


/* ===== CARRUSEL ÚLTIMOS INGRESOS ===== */

.carrusel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.carrusel {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollCarrusel 25s linear infinite;
    padding-left: 20px;
}

.carrusel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarrusel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ===== PAGINACIÓN DINÁMICA ===== */

.paginacion {
    text-align: center;
    margin-top: 30px;
}

.paginacion button {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    min-width: 40px;
}

.paginacion button.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}


/* ===== SELECTOR DE CATEGORÍAS - MÁS GRANDE ===== */

.busqueda-categoria {
    text-align: center;
    margin-bottom: 15px;
}

.busqueda-categoria select {
    padding: 12px 25px;
    /* ✅ AUMENTADO */
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 18px;
    /* ✅ AUMENTADO */
    min-width: 280px;
    /* ✅ AUMENTADO */
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.busqueda-categoria select:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#filtro-categoria {
    width: 100%;
    padding: 12px 25px;
    /* ✅ AUMENTADO */
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 18px;
    /* ✅ AUMENTADO */
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#filtro-categoria:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.acciones-header {
    display: flex;
    gap: 15px;
    align-items: center;
}


/* ===== BANNER PROMOCIONAL ===== */

.banner-promocional {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 60px auto;
    overflow: hidden;
}

.banner-img {
    position: relative;
    width: 1920px;
    max-width: 1920px;
    height: 470px;
    display: block;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

.banner-promocional:hover .banner-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 3.5em;
    margin: 0 0 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-text {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.8em;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.6s;
    max-width: 900px;
    line-height: 1.4;
}


/* ===== FOOTER ===== */

footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#newsletter-form input {
    padding: 8px;
    border-radius: 4px;
    border: none;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
}

#newsletter-form button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}


/* ===== BOTONES FIJOS ===== */

.icon-cart {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.icon-cart svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.icon-cart span {
    position: absolute;
    background-color: red;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    top: -6px;
    right: -6px;
}

#btn-subir {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

#btn-subir:hover {
    background: #2980b9;
}


/* ===== CARRITO ===== */

.cartTab {
    width: 400px;
    background-color: #353432;
    color: #eee;
    position: fixed;
    top: 0;
    right: -400px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: 0.5s;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    z-index: 1002;
    padding: 0 10px;
}

body.showCart .cartTab {
    right: 0;
}

.cartTab h1 {
    padding: 20px;
    margin: 0;
    font-weight: 300;
    font-size: 1.5em;
}

.cartTab .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px 10px;
}

.cartTab button {
    background-color: #E8BC0E;
    border: none;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
    padding: 12px;
    font-size: 1em;
    border-radius: 5px;
}

.cartTab .close {
    background-color: #eee;
    color: #333;
}

.listCart .item {
    display: grid;
    grid-template-columns: 70px 1fr 60px;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.listCart .image img {
    width: 100%;
    border-radius: 4px;
}

.listCart .image a {
    display: block;
    width: 100%;
    height: 100%;
}

.listCart .image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.listCart .image a:hover img {
    opacity: 0.8;
}

.listCart .name {
    text-align: left;
    font-size: 0.95em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listCart .totalPrice {
    font-weight: bold;
    text-align: right;
}

.listCart .quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.listCart .quantity span {
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
    color: #333;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.listCart .quantity span:nth-child(2) {
    background: transparent;
    color: #eee;
    cursor: default;
    font-size: 12px;
}

.listCart {
    overflow: auto;
    padding: 10px 0;
}

.thumb-carousel .swiper-button-next,
.thumb-carousel .swiper-button-prev {
    display: none !important;
}


/* ===== MODAL IMAGEN ===== */

.btn-ver-mas {
    display: block;
    margin: 15px auto 0;
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpBtn 0.6s forwards 0.4s;
    /* animación al abrir modal */
}

.btn-ver-mas:hover {
    background: #2980b9;
    box-shadow: 0 0 22px rgba(52, 152, 219, 0.8);
    transform: translateY(-2px);
}

@keyframes fadeInUpBtn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-ver-mas {
    display: inline-block;
    margin-top: 15px;
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 12px rgba(52, 152, 219, 0.6);
    /* halo azul */
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    background: #2980b9;
    box-shadow: 0 0 18px rgba(52, 152, 219, 0.8);
    /* halo más intenso */
    transform: translateY(-2px);
}

#modal-imagenes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

#modal-imagenes .modal-contenido {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.cerrar-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#modal-img-grande {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.titulo-modal {
    color: white;
    margin-top: 15px;
    font-size: 1.2em;
}

.miniaturas-modal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.miniaturas-modal img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
}

.miniaturas-modal img:hover {
    opacity: 0.8;
}


/* ===== RESPONSIVE COMPLETO ===== */

@media (min-width: 1921px) {
    .hero-parallax {
        max-width: 1920px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .miniaturas {
        justify-content: space-between;
        overflow-x: hidden;
    }
}

@media (max-width: 1024px) {
    .listProduct {
        grid-template-columns: repeat(3, 1fr);
    }
    .precios-doble {
        flex-direction: column;
        gap: 6px;
    }
    .btn-precio {
        padding: 8px;
    }
    .banner-promocional {
        margin: 40px auto;
    }
    .banner-title {
        font-size: 2.8em;
    }
    .banner-text {
        font-size: 1.5em;
    }
}

@media (max-width: 992px) {
    .listProduct {
        grid-template-columns: repeat(2, 1fr);
    }
    .carrusel {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-estandar {
        height: 70px;
    }
    .logo img {
        height: 60px;
    }
    .header-contenido {
        padding: 0 15px;
    }
    .acciones-header {
        width: auto;
    }
    .icon-cart {
        top: 85px;
        right: 15px;
        z-index: 1001;
    }
    #btn-subir {
        bottom: 85px;
        right: 15px;
    }
    .listProduct {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .listProduct .item img.imagen-principal {
        height: 280px;
    }
    .miniaturas {
        gap: 4px;
        padding: 8px 0;
        justify-content: flex-start;
    }
    .miniaturas img {
        width: 50px;
        height: 50px;
    }
    .precios-doble {
        flex-direction: row;
        gap: 8px;
    }
    .btn-precio {
        padding: 12px 10px;
    }
    .carrusel {
        gap: 15px;
        padding-left: 10px;
    }
    .title {
        font-size: 2.5em;
    }
    .text {
        font-size: 1.3em;
    }
    /* ✅ SELECTOR DE CATEGORÍAS - MÓVIL (MÁS GRANDE) */
    .busqueda-categoria select {
        min-width: 200px;
        /* ✅ AUMENTADO */
        font-size: 16px;
        /* ✅ AUMENTADO */
        padding: 10px 15px;
        /* ✅ AUMENTADO */
    }
    #filtro-categoria {
        min-width: 200px;
        /* ✅ AUMENTADO */
        font-size: 16px;
        /* ✅ AUMENTADO */
        padding: 10px 15px;
        /* ✅ AUMENTADO */
    }
    .banner-promocional {
        margin: 30px auto;
    }
    .banner-title {
        font-size: 2em;
        letter-spacing: 1px;
    }
    .banner-text {
        font-size: 1.2em;
    }
    .paginacion button {
        padding: 6px 12px;
        font-size: 14px;
        margin: 0 3px;
    }
    .footer-contenido {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .miniaturas img {
        width: 45px;
        height: 45px;
    }
    .listProduct .item img.imagen-principal {
        height: 260px;
    }
    .banner-title {
        font-size: 1.6em;
    }
    .banner-text {
        font-size: 1em;
    }
    .title {
        font-size: 2em;
    }
    .text {
        font-size: 1.1em;
    }
    /* ✅ MÓVIL PEQUEÑO - SELECTOR */
    .busqueda-categoria select {
        min-width: 180px;
        font-size: 14px;
        padding: 8px 12px;
    }
}