/* ===============================
   🧠 RECOMENDACIONES iOON (NUEVO)
   =============================== */

.tienda-reco-footer {
    width: 100%;
    height: auto;
    background-color: var(--gris-tecnico);
    text-align: center;
    padding: 65px 0px 20px 0px;
}

.tienda-reco-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    align-items: center;
    height: auto;
}

@media (max-width: 768px) {
    .tienda-reco-wrapper {
        padding: 0 20px;

        }
    

    }


/* ===============================
   🎠 CAROUSEL
   =============================== */

.tienda-reco-carousel {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: auto;
}

.tienda-reco-carousel::-webkit-scrollbar {
    display: none;
}

/* ===============================
   🧱 CARD
   =============================== */

.tienda-reco-card {
    flex: 0 0 calc(20% - 12px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    overflow: visible;
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.tienda-reco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===============================
   🖼 IMAGEN 4:5 (CLAVE)
   =============================== */

.tienda-reco-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tienda-reco-card img {
    position: relative;
    z-index: 1;
}

.tienda-reco-content {
    position: relative;
    z-index: 2;
    min-height: 140px;
}

/* ===============================
   📝 CONTENIDO
   =============================== */

.tienda-reco-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    height: auto;
}

.tienda-reco-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
    height: auto;
}

/* NUEVO TEXTO */
.tienda-reco-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    height: auto;
}

/* ===============================
   🔘 BOTÓN
   =============================== */

.tienda-reco-btn {
    margin-top: auto;
    padding: 10px;
    background: #1a1a1a !important;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
    height: auto;
    scroll-snap-align: center;
}

.tienda-reco-card:hover .tienda-reco-btn {
    background: inherit;
}

/* ===============================
   🟢 PACK DESTACADO
   =============================== */

.pack-wsp {
    border: 2px solid var(--verde-wsp);
}

.pack-wsp .tienda-reco-btn {
    background: var(--verde-wsp);
}

.pack-wsp:hover .tienda-reco-btn {
    background: var(--verde-wsp-hover);
}

/* ===============================
   🔘 FLECHAS
   =============================== */

.tienda-reco-wrapper button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(107,107,107,0.3);
    backdrop-filter: blur(4px);
    color: #292929;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    z-index: 500;
}

.tienda-reco-wrapper button:hover {
    background: black !important;
    color: white !important;
    text-decoration: none !important;

    transform: scale(1.1);
}
/* ===============================
   📱 RESPONSIVE
   =============================== */

@media (max-width: 992px) {
    .tienda-reco-card {
        flex: 0 0 calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {

    .tienda-reco-card {
        flex: 0 0 75%;
    }

    .tienda-reco-content h4 {
        font-size: 14px;
    }

    .tienda-reco-desc {
        font-size: 12px;
    }

    .tienda-reco-wrapper button {
        
    }

    .tienda-reco-carousel {
        padding: 15px 0px;
        background: #fff;
    }
}

/* ===============================
   🔘 DOTS MOBILE
   =============================== */

.tienda-reco-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.tienda-reco-dots .dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* ACTIVO = ELIPSE */
.tienda-reco-dots .dot.active {
    width: 18px;
    border-radius: 20px;
    background: black !important;
}

/* SOLO MOBILE */
@media (max-width: 768px) {
    .tienda-reco-dots {
        display: flex;
    }
}