/* VARIABLES Y CONFIGURACIÓN BASE */
:root {
    --color-primario: #2e6fa3;
    --color-primario-oscuro: #1a4d7a;
    --color-primario-claro: #4a8bc2;
    --color-secundario: #6ba832;
    --color-secundario-claro: #8bc653;
    --color-acento: #f57c00;
    --color-dorado: #d4af37;
    --color-texto: #2c3e50;
    --color-texto-claro: #5a6c7d;
    --color-fondo: #ffffff;
    --color-fondo-alterno: #f8fbfd;
    --sombra-suave: 0 10px 40px rgba(46, 111, 163, 0.1);
    --sombra-media: 0 20px 60px rgba(46, 111, 163, 0.15);
    --sombra-fuerte: 0 30px 80px rgba(46, 111, 163, 0.2);
    --transicion-suave: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transicion-rebote: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --fuente-decorativa: 'Playfair Display', serif;
    --fuente-principal: 'Montserrat', 'Segoe UI', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

/* HERO BAZAR */
.hero-bazar {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(46,111,163,0.02) 100%),
        linear-gradient(135deg, #fafcfe 0%, #f5f9fc 50%, #f0f7fa 100%);
    overflow: hidden;
}

/* CONTENIDO HERO */
.hero-contenido-bazar {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

/* TÍTULO HERO */
.hero-titulo-bazar {
    font-family: 'Playfair Display', var(--fuente-decorativa, Georgia), serif;
    font-size: clamp(56px, 14vw, 120px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a4a6e 0%, #2e6fa3 40%, #3d85b8 70%, #2e6fa3 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: titulo-aparecer 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-titulo-bazar:hover {
    animation: titulo-aparecer 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               gradiente-suave 4s ease infinite;
}

@keyframes gradiente-suave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* LÍNEA DE ACENTO */
.hero-linea-accent {
    width: 80px;
    height: 3px;
    margin: 35px auto 0;
    background: linear-gradient(90deg, var(--color-primario, #2e6fa3) 0%, var(--color-secundario, #6ba832) 100%);
    border-radius: 3px;
    opacity: 0;
    transform: scaleX(0);
    animation: linea-aparecer 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes titulo-aparecer {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes linea-aparecer {
    from { opacity: 0; transform: scaleX(0); }
    to   { opacity: 1; transform: scaleX(1); }
}

/* BOTÓN SCROLL INDICADOR */
.hero-scroll-indicador {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: boton-aparecer 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

.hero-scroll-indicador:hover .scroll-flecha {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 111, 163, 0.2);
}

.scroll-flecha {
    width: 40px;
    height: 60px;
    border: 2px solid var(--color-primario);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-flecha::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 4px;
    height: 10px;
    background: linear-gradient(180deg, var(--color-primario), var(--color-secundario));
    border-radius: 2px;
    animation: scroll-punto 2s ease-in-out infinite;
}

.scroll-flecha svg {
    width: 18px;
    height: 18px;
    color: var(--color-primario);
    opacity: 0.7;
    position: absolute;
    bottom: 10px;
}

@keyframes bounce-scroll { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes scroll-punto  { 0%, 100% { top: 10px; opacity: 1; } 50% { top: 25px; opacity: 0.5; } }
@keyframes boton-aparecer { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE HERO — idéntico a contacto.css */

/* Tablet (<=1024px) */
@media screen and (max-width: 1024px) {
    .hero-bazar {
        min-height: 150px;
        padding: 55px 20px 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-contenido-bazar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 0;
        margin-top: 0;
    }
    .hero-titulo-bazar {
        font-size: clamp(34px, 8vw, 48px);
        text-align: center;
        margin: 0;
        padding: 0;
        white-space: normal;
    }
    .hero-linea-accent {
        width: 60px;
        height: 2px;
        margin: 15px auto 0;
    }
    .hero-scroll-indicador { margin-top: 20px; }
    .scroll-flecha { width: 36px; height: 54px; }
}

/* Móvil (<=767px) */
@media screen and (max-width: 767px) {
    .hero-bazar {
        min-height: 150px;
        padding: 55px 15px 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-contenido-bazar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 0;
        margin-top: 0;
    }
    .hero-titulo-bazar {
        font-size: 34px;
        text-align: center;
        margin: 0;
        padding: 0;
        white-space: normal;
    }
    .hero-linea-accent {
        width: 50px;
        height: 2px;
        margin: 12px auto 0;
    }
    .hero-scroll-indicador { display: none; }
}

/* Móvil pequeño (<=480px) */
@media screen and (max-width: 480px) {
    .hero-bazar {
        min-height: 150px;
        padding: 55px 15px 55px;
    }
    .hero-titulo-bazar { font-size: 30px; }
    .hero-linea-accent { width: 45px; margin: 10px auto 0; }
}

/* ============================================================
   SECCIÓN: PRODUCTOS DEL BAZAR
   ============================================================ */
.seccion-productos {
    padding: 90px 20px 110px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 50%, #f5f9fb 100%);
    position: relative;
    overflow: hidden;
    /* Oculta al cargar — igual que en contacto */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Se muestra al hacer scroll o click en la flecha */
.seccion-productos.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fondo decorativo */
.seccion-productos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(46, 111, 163, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(107, 168, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* CONTENEDOR PRINCIPAL */
.cont-bazar {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   ENCABEZADO DE SECCIÓN
   ============================================================ */
.encab-bazar {
    text-align: center;
    margin-bottom: 55px;
}

/* Etiqueta pill superior */
.etiq-sup-bazar {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(46, 111, 163, 0.07);
    color: #2e6fa3;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(46, 111, 163, 0.15);
    margin-bottom: 18px;
}

/* Título principal */
.tit-bazar {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    color: #1a4d7a;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

/* Subtítulo */
.sub-bazar {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 2vw, 17px);
    color: #5a6c7d;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ============================================================
   FILTROS DE CATEGORÍA
   ============================================================ */
.filtros-bazar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-cat {
    padding: 10px 26px;
    border: 2px solid rgba(46, 111, 163, 0.2);
    border-radius: 50px;
    background: #ffffff;
    color: #5a6c7d;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cat:hover,
.btn-cat.activo-cat {
    background: linear-gradient(135deg, #2e6fa3, #4a8bc2);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(46, 111, 163, 0.3);
    transform: translateY(-2px);
}

/* ============================================================
   GRID DE PRODUCTOS
   ============================================================ */
.grid-prod {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* ============================================================
   TARJETA DE PRODUCTO
   ============================================================ */
.tarj-prod {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(46, 111, 163, 0.08);
    border: 1px solid rgba(46, 111, 163, 0.07);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.tarj-prod:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(46, 111, 163, 0.16);
    border-color: rgba(46, 111, 163, 0.18);
}

/* ============================================================
   CARRUSEL INTERNO DEL PRODUCTO
   ============================================================ */
.carusel-prod {
    position: relative;
    overflow: hidden;
}

/* Marco de fotos */
.marco-fotos {
    position: relative;
    width: 100%;
    height: 300px;
    background: #f0f4f8;
}

/* Foto individual */
.foto-prod {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);    
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges;               
    will-change: opacity;
}

/* Foto activa */
.foto-prod.activa-foto {
    opacity: 1;
}

/* Puntos de navegación */
.puntos-carusel {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.punto-carusel {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.punto-carusel.punto-activo {
    background: #ffffff;
    transform: scale(1.35);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

/* Etiqueta de categoría sobre la foto */
.etiq-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: rgba(46, 111, 163, 0.88);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

/* Colores por categoría */
.etiq-cat.cat-perfumes  { background: rgba(176, 80, 160, 0.88); }
.etiq-cat.cat-ropa      { background: rgba(245, 124, 0, 0.88); }
.etiq-cat.cat-electro   { background: rgba(107, 168, 50, 0.88); }
.etiq-cat.cat-belleza   { background: rgba(220, 60, 100, 0.88); }

/* ============================================================
   SIN STOCK
   ============================================================ */
.tarj-prod.sin-stock {
    opacity: 0.72;
    filter: grayscale(35%);
}

.tarj-prod.sin-stock:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(46, 111, 163, 0.08);
}

.sello-sin-stock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    background: rgba(200, 30, 30, 0.88);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 6px;
    border: 3px solid rgba(255,255,255,0.7);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

.btn-wsp-agotado {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: #e8e8e8;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    cursor: not-allowed;
    border: none;
}

/* ============================================================
   INFORMACIÓN DEL PRODUCTO
   ============================================================ */
.info-prod {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

/* Nombre del producto */
.nom-prod {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 21px);
    font-weight: 700;
    color: #1a4d7a;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.tarj-prod:hover .nom-prod { color: #2e6fa3; }

/* Descripción */
.desc-prod {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #5a6c7d;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Área inferior de la tarjeta */
.pie-prod {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

/* ============================================================
   SISTEMA DE PRECIOS CON AHORRO
   ============================================================ */

/* Bloque completo de precios */
.precios-prod {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Fila superior: precio anterior + badge ahorro */
.fila-antes {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Precio anterior tachado */
.precio-antes {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9eafc0;
    text-decoration: line-through;
    text-decoration-color: #c9d6e0;
    text-decoration-thickness: 2px;
}

/* Badge de ahorro */
.badge-ahorro {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(107, 168, 50, 0.25);
    letter-spacing: 0.2px;
}

.badge-ahorro::before {
    content: '↓';
    font-size: 12px;
}

/* Fila inferior: precio actual + cuotas */
.fila-actual {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

/* Precio actual destacado */
.precio-actual {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #2e6fa3;
    line-height: 1;
}

/* Texto de cuotas */
.precio-cuotas {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #6ba832;
    background: rgba(107, 168, 50, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ============================================================
   BOTÓN WHATSAPP
   ============================================================ */
.btn-wsp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 18px rgba(37, 211, 102, 0.28);
    position: relative;
    overflow: hidden;
}

.btn-wsp::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-wsp:hover::before { left: 100%; }

.btn-wsp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1ebe5a, #0d7a6e);
}

.btn-wsp svg { flex-shrink: 0; }

/* ============================================================
   BANNER CTA INFERIOR
   ============================================================ */
.banner-cta-bazar {
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #2e6fa3 0%, #1a4d7a 50%, #2e6fa3 100%);
    background-size: 200% 200%;
    animation: grad-cta 5s ease infinite;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(46, 111, 163, 0.3);
}

@keyframes grad-cta {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.banner-cta-bazar::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.tit-cta {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.sub-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 30px;
    max-width: 580px;
    line-height: 1.7;
}

.btn-cta-wsp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #ffffff;
    color: #1a4d7a;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-cta-wsp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #25d366;
    color: #ffffff;
}

/* ============================================================
   ANIMACIONES DE ENTRADA SCROLL
   ============================================================ */
.animar-entrada {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(4px);
    transition:
        opacity    0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform  0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter     0.75s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Estado visible — tarjeta ya apareció */
.animar-entrada.entrada-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Brillo al aparecer — efecto premium */
.tarj-prod.animar-entrada.entrada-visible {
    animation: brillo-aparicion 1s ease forwards;
}

@keyframes brillo-aparicion {
    0%   { box-shadow: 0 8px 30px rgba(46, 111, 163, 0.08); }
    40%  { box-shadow: 0 20px 50px rgba(46, 111, 163, 0.22), 0 0 30px rgba(46, 111, 163, 0.1); }
    100% { box-shadow: 0 8px 30px rgba(46, 111, 163, 0.08); }
}

/* Delays escalonados por posición en el grid — efecto cascada */
.grid-prod .tarj-prod:nth-child(4n+1) { transition-delay: 0.00s; }
.grid-prod .tarj-prod:nth-child(4n+2) { transition-delay: 0.12s; }
.grid-prod .tarj-prod:nth-child(4n+3) { transition-delay: 0.24s; }
.grid-prod .tarj-prod:nth-child(4n+4) { transition-delay: 0.36s; }

/* En tablet: 3 columnas */
@media screen and (max-width: 1024px) {
    .grid-prod .tarj-prod:nth-child(3n+1) { transition-delay: 0.00s; }
    .grid-prod .tarj-prod:nth-child(3n+2) { transition-delay: 0.12s; }
    .grid-prod .tarj-prod:nth-child(3n+3) { transition-delay: 0.24s; }
}

/* En móvil: 2 columnas */
@media screen and (max-width: 767px) {
    .animar-entrada {
        transform: translateY(35px) scale(0.97);
        filter: blur(2px);
    }
    .grid-prod .tarj-prod:nth-child(2n+1) { transition-delay: 0.00s; }
    .grid-prod .tarj-prod:nth-child(2n+2) { transition-delay: 0.10s; }
}

/* ============================================================
   RESPONSIVE - TABLETS
   ============================================================ */
/* RESPONSIVE - TABLETS */
@media screen and (max-width: 1024px) {
    .seccion-productos { padding: 70px 20px 90px; }
    .grid-prod { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .marco-fotos { height: 200px; }
    .banner-cta-bazar { padding: 40px 30px; }
    .encab-bazar { margin-bottom: 45px; }
}

/* RESPONSIVE - MÓVILES */
@media screen and (max-width: 767px) {
    .seccion-productos { padding: 60px 15px 80px; }
    .encab-bazar { margin-bottom: 40px; }
    .filtros-bazar { gap: 8px; margin-bottom: 40px; }
    .btn-cat { padding: 8px 18px; font-size: 13px; }
    .grid-prod { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .marco-fotos { height: 175px; }
    .nom-prod { font-size: 14px; }
    .desc-prod { font-size: 12px; }
    .info-prod { padding: 14px 12px 16px; gap: 7px; }
    .precio-actual { font-size: 20px; }
    .btn-wsp { font-size: 12px; padding: 11px 12px; }
    .banner-cta-bazar { margin-top: 60px; padding: 35px 22px; border-radius: 18px; }
}

/* RESPONSIVE - MÓVILES PEQUEÑOS */
@media screen and (max-width: 480px) {
    .seccion-productos { padding: 50px 10px 70px; }
    .grid-prod { gap: 10px; }
    .marco-fotos { height: 150px; }
    .nom-prod { font-size: 13px; }
    .precio-actual { font-size: 18px; }
    .btn-wsp { font-size: 11px; padding: 10px 10px; }
    .badge-ahorro { font-size: 10px; }
    .sello-sin-stock { font-size: 14px; padding: 7px 16px; }
}

.prod-contener .foto-prod {
    object-fit: contain;
}