/* STRATE TRENDING TECH - FNAC - CORREGIDO UX ||| VESRIÓN 17022026 */

/* ======= AISLAMIENTO TOTAL ======= */
.trending-tech-carousel-section * {
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.trending-tech-carousel-section a,
.trending-tech-carousel-section a:hover {
    text-decoration: none !important;
}

.trending-tech-carousel-section {
    width: 100%;
    background-color: #003D42;
    overflow: hidden;
    padding: 25px 0 40px;
}

/* ======= CONTENEDOR PRINCIPAL ======= */
.trending-tech-carousel-container {
    display: flex;
    align-items: stretch;
    /* max-width: 1280px; */
    margin: 0 auto;
    /* padding: 0 20px; */
    padding: 0 0 0 7em!important;
    gap: 20px;
}

/* -------- FLECHAS NAVEGACIÓN -------------   */
.trending-tech-nav-next{
    right: 31px;
    position: absolute;
}

.trending-tech-nav-prev{
    left: 26em;
}

/* ======= BANNER IZQUIERDO FIJO ======= */
.trending-tech-banner-fixed {
    background: linear-gradient(180deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 22px;
    text-align: center;
    padding: 20px 10px 30px;
    display: flex;
    flex-direction: column;
    flex: 0 0 260px;
}

.trending-tech-banner-fixed img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.trending-tech-banner-fixed h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px 0 20px;
}

/* BOTÓN IZQUIERDO */
.trending-tech-banner-fixed .trending-tech-btn-offer {
    background: #edba21;
    color: #000;
    border: none;
    padding: 16px 40px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
    margin: 15px auto 0;
    width: 90%;
    max-width: 200px;
}

.trending-tech-banner-fixed a:hover .trending-tech-btn-offer {
    opacity: 0.85;
}

/* ======= COLUMNA DERECHA: FLECHAS + CARRUSEL ======= */
.trending-tech-right-column {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0; /* clave para overflow-x en el track */
    margin-right: -4em;
}

/* ======= FLECHAS DE NAVEGACIÓN ======= */
.trending-tech-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #edba21;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #003D42;
    font-size: 27px;
    padding-bottom: 4px!important;
    font-weight: 500;
    padding: 0;
    flex: 0 0 auto;
    z-index: 1;
}

.trending-tech-nav:hover {
    background: #dca100;
    color: #000;
}

/* ======= CARRUSEL DESLIZABLE ======= */
.trending-tech-products-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    flex: 1 1 auto;
    cursor: grab;
}

.trending-tech-products-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.trending-tech-products-track::-webkit-scrollbar {
    height: 6px;
}

.trending-tech-products-track::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 3px;
}

/* ======= TARJETA PRODUCTO ======= */
.trending-tech-product {
    flex: 0 0 240px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    padding: 10px 12px 16px;
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.3s;
    color: inherit;
    display: block;
}

.trending-tech-product:hover {
    transform: translateY(-3px);
}

.trending-tech-product img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Badge descuento */
.trending-tech-discount {
    background: #edba21;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 10px;
    position: relative;
    top: -25px;
    display: inline-block;
}

.trending-tech-product h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: -10px 0 8px;
}

.trending-tech-price-old {
    font-size: 16px;
    color: #555;
    text-decoration: line-through;
}

.trending-tech-price-new {
    font-size: 22px;
    font-weight: 800;
    color: #e60012;
    margin-top: 3px;
}

.trending-tech-price-financiacion {
    font-size: 16px;
    font-weight: 600;
    color: #e96f78;
    margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .trending-tech-carousel-container {
        flex-direction: column;
        /* padding: 0 10px; */
        padding: 0 0 0 0em !important;
    }

    /* .trending-tech-banner-fixed {
        margin: 0 auto 20px;
        flex: 0 0 auto;
        width: 100%;
    } */

    .trending-tech-banner-fixed {
            margin: 0 1em 20px 1em;
            flex: 0 0 auto;
            width: 92%;
            display:none!important;
        }

    /* .trending-tech-right-column {
        width: 100%;
    } */

     .trending-tech-right-column {
        width: 100%;
        margin-right: 0em!important;
        margin-left: 1em;
    }

    .trending-tech-products-track {
        padding: 0 10px 12px;
    }

    .trending-tech-product {
        flex: 0 0 74%;
    }
}