@import url('../reutilizables/fonts.css');

/* 2. Propiedades Globales (Fuera de MQ) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #fff;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

/* =========================================================
   ESTILOS GLOBALES: BREADCRUMBS Y TAGS (CABECERA)
   ========================================================= */
.bloque-110-izq {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bloque-110 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.texto-1101 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #003cff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s;
}

.texto-1101:hover {
    opacity: 0.8;
}

.texto-1102, .texto-1103 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #777777;
    font-weight: 500;
}

.bloque-113 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.tag-1131 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    background-color: #f0f2f5;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.tag-1131:hover {
    background-color: #e4e6eb;
    color: #213242;
}

/* =========================================================
   ESTILOS DE PRODUCTO DETALLADOS (TIPO AMAZON PREMIUM)
   ========================================================= */
.detalles-swatches {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
    margin-top: 4px;
}

.swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: inline-block;
}

.swatch-azul { background-color: #003cff; }
.swatch-gris { background-color: #777777; }
.swatch-morado { background-color: #8a2be2; }
.swatch-naranja { background-color: #ff6600; }
.swatch-negro { background-color: #213242; }
.swatch-rojo { background-color: #ff3b30; }
.swatch-verde { background-color: #4cd964; }
.swatch-amarillo { background-color: #ffcc00; }

.texto-marca {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #777777;
    margin-bottom: 2px;
    line-height: 1;
}

.texto-marca strong {
    color: #213242;
    font-weight: 700;
}

.detalles-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    margin-top: 2px;
}

.estrellas {
    color: #ff9900;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 13px;
}

.puntuacion {
    color: #213242;
    font-weight: 700;
}

.reviews {
    color: #003cff;
    cursor: pointer;
    text-decoration: none;
}

.reviews:hover {
    text-decoration: underline;
}

.texto-ventas {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #555555;
    margin-top: 2px;
}

.badge-promo {
    display: inline-block;
    width: fit-content;
    background-color: #cc0c39;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.badge-promo-azul {
    background-color: #003cff;
}

.badge-promo-gris {
    background-color: #555555;
}

.detalles-precio {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 6px;
}

.precio-actual {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #213242;
}

.precio-antes {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #777777;
    text-decoration: line-through;
}

.texto-envio {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #555555;
    margin-top: 4px;
}

.texto-envio strong {
    font-weight: 700;
    color: #213242;
}

.detalles-caracteristicas {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
    border-top: 1px dashed #e8e8e8;
    padding-top: 8px;
}

.carac-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #555555;
}

.icono-check {
    width: 12px;
    height: 12px;
    fill: #4cd964;
    flex-shrink: 0;
}

/* Enlaces de títulos en Tarjetas */
.texto-12121 a, .texto-12221 a, .texto-12321 a, .texto-12421 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.texto-12121 a:hover, .texto-12221 a:hover, .texto-12321 a:hover, .texto-12421 a:hover {
    color: #003cff;
}



/* 1. MQ1 */
@media (min-width: 1367px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 170px;
        padding-bottom: 100px;
        background-color: #fcfcfc;
    }

    .modulo-11 {
        width: 70%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    .bloque-111 {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .texto-1111 {
        font-family: 'Outfit', sans-serif;
        font-size: 38px;
        color: #213242;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.8px;
    }

    .texto-1112 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 600;
        text-transform: none;
        margin-top: 10px;
    }



    .modulo-12 {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .bloque-121, .bloque-122, .bloque-123, .bloque-124 {
        width: calc((100% - 60px) / 4);
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .contenido-1211, .contenido-1221, .contenido-1231, .contenido-1241 {
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
        background-color: #f0f0f0;
    }

    .contenido-1211:hover, .contenido-1221:hover, .contenido-1231:hover, .contenido-1241:hover {
        transform: translateY(-8px);
    }

    .imagen-12111, .imagen-12211, .imagen-12311, .imagen-12411,
    .video-12111, .video-12211, .video-12311, .video-12411 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .contenido-1212, .contenido-1222, .contenido-1232, .contenido-1242 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0 5px;
    }

    .texto-12121, .texto-12221, .texto-12321, .texto-12421 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 700;
        line-height: 1.2;
    }

    .texto-12122, .texto-12222, .texto-12322, .texto-12422 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
        font-weight: 400;
        line-height: 1.4;
    }
}

/* 2. MQ2 */
@media (min-width: 1281px) and (max-width: 1366px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 160px;
        padding-bottom: 80px;
        background-color: #fcfcfc;
    }

    .modulo-11 {
        width: 80%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .bloque-111 {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .texto-1111 {
        font-family: 'Outfit', sans-serif;
        font-size: 34px;
        color: #213242;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.5px;
    }

    .texto-1112 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 600;
        text-transform: none;
        margin-top: 10px;
    }



    .modulo-12 {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .bloque-121, .bloque-122, .bloque-123, .bloque-124 {
        width: calc((100% - 45px) / 4);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-1211, .contenido-1221, .contenido-1231, .contenido-1241 {
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
        background-color: #f0f0f0;
    }

    .contenido-1211:hover, .contenido-1221:hover, .contenido-1231:hover, .contenido-1241:hover {
        transform: translateY(-5px);
    }

    .imagen-12111, .imagen-12211, .imagen-12311, .imagen-12411,
    .video-12111, .video-12211, .video-12311, .video-12411 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .contenido-1212, .contenido-1222, .contenido-1232, .contenido-1242 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0 4px;
    }

    .texto-12121, .texto-12221, .texto-12321, .texto-12421 {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        color: #213242;
        font-weight: 700;
        line-height: 1.2;
    }

    .texto-12122, .texto-12222, .texto-12322, .texto-12422 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        font-weight: 400;
        line-height: 1.4;
    }
}

/* 3. MQ3 */
@media (min-width: 1025px) and (max-width: 1280px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 150px;
        padding-bottom: 60px;
        background-color: #fcfcfc;
    }

    .modulo-11 {
        width: 90%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 35px;
    }

    .bloque-111 {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .texto-1111 {
        font-family: 'Outfit', sans-serif;
        font-size: 30px;
        color: #213242;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.5px;
    }

    .texto-1112 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 600;
        text-transform: none;
        margin-top: 10px;
    }



    .modulo-12 {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .bloque-121, .bloque-122, .bloque-123, .bloque-124 {
        width: calc((100% - 40px) / 3); /* 3 columns */
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-1211, .contenido-1221, .contenido-1231, .contenido-1241 {
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background-color: #f0f0f0;
    }

    .imagen-12111, .imagen-12211, .imagen-12311, .imagen-12411,
    .video-12111, .video-12211, .video-12311, .video-12411 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .contenido-1212, .contenido-1222, .contenido-1232, .contenido-1242 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .texto-12121, .texto-12221, .texto-12321, .texto-12421 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #213242;
        font-weight: 700;
        line-height: 1.2;
    }

    .texto-12122, .texto-12222, .texto-12322, .texto-12422 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        font-weight: 400;
        line-height: 1.4;
    }
}

/* 4. MQ4 */
@media (min-width: 768px) and (max-width: 1024px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 150px;
        padding-bottom: 50px;
        background-color: #fcfcfc;
    }

    .modulo-11 {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .bloque-111 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1111 {
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        color: #213242;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.5px;
    }

    .texto-1112 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 600;
        text-transform: none;
        margin-top: 10px;
    }



    .modulo-12 {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .bloque-121, .bloque-122, .bloque-123, .bloque-124 {
        width: calc((100% - 15px) / 2); /* 2 columns */
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contenido-1211, .contenido-1221, .contenido-1231, .contenido-1241 {
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background-color: #f0f0f0;
    }

    .imagen-12111, .imagen-12211, .imagen-12311, .imagen-12411,
    .video-12111, .video-12211, .video-12311, .video-12411 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .contenido-1212, .contenido-1222, .contenido-1232, .contenido-1242 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .texto-12121, .texto-12221, .texto-12321, .texto-12421 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #213242;
        font-weight: 700;
        line-height: 1.2;
    }

    .texto-12122, .texto-12222, .texto-12322, .texto-12422 {
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        color: #777777;
        font-weight: 400;
        line-height: 1.4;
    }
}

/* 5. MQ5 */
@media (min-width: 481px) and (max-width: 767px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 140px;
        padding-bottom: 40px;
        background-color: #fcfcfc;
    }

    .modulo-11 {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .bloque-111 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .texto-1111 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        color: #213242;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.5px;
    }

    .texto-1112 {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        color: #213242;
        font-weight: 600;
        text-transform: none;
        margin-top: 10px;
    }



    .modulo-12 {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
    }

    .bloque-121, .bloque-122, .bloque-123, .bloque-124 {
        width: calc((100% - 12px) / 2); /* 2 columns */
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contenido-1211, .contenido-1221, .contenido-1231, .contenido-1241 {
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background-color: #f0f0f0;
    }

    .imagen-12111, .imagen-12211, .imagen-12311, .imagen-12411,
    .video-12111, .video-12211, .video-12311, .video-12411 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .contenido-1212, .contenido-1222, .contenido-1232, .contenido-1242 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .texto-12121, .texto-12221, .texto-12321, .texto-12421 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #213242;
        font-weight: 700;
        line-height: 1.2;
    }

    .texto-12122, .texto-12222, .texto-12322, .texto-12422 {
        font-family: 'Outfit', sans-serif;
        font-size: 10px;
        color: #777777;
        font-weight: 400;
        line-height: 1.4;
    }
}

/* 6. MQ6 (Mobile) */
@media (min-width: 320px) and (max-width: 480px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 130px;
        padding-bottom: 30px;
        background-color: #fcfcfc;
    }

    .modulo-11 {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .bloque-111 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .texto-1111 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        color: #213242;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.5px;
    }

    .texto-1112 {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        color: #213242;
        font-weight: 600;
        text-transform: none;
        margin-top: 10px;
    }



    .modulo-12 {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .bloque-121, .bloque-122, .bloque-123, .bloque-124 {
        width: 100%; /* 1 column on very small mobile, or can use 2 */
        max-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contenido-1211, .contenido-1221, .contenido-1231, .contenido-1241 {
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background-color: #f0f0f0;
    }

    .imagen-12111, .imagen-12211, .imagen-12311, .imagen-12411,
    .video-12111, .video-12211, .video-12311, .video-12411 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .contenido-1212, .contenido-1222, .contenido-1232, .contenido-1242 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .texto-12121, .texto-12221, .texto-12321, .texto-12421 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #213242;
        font-weight: 700;
        line-height: 1.2;
    }

    .texto-12122, .texto-12222, .texto-12322, .texto-12422 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        font-weight: 400;
        line-height: 1.4;
    }
}
