#detalle {}
#detalle > .detalle-principal.contenedor {
    width: 100%;
}
#detalle .galeria-producto {
    background: #f8f4ee;
}
#detalle .galeria-producto > .imagen {
    position: relative;
    touch-action: pan-y;
    overflow: hidden;
}
#detalle .galeria-producto > .imagen > img {
    width: 100%;
    display: block;
}
#detalle .galeria-producto > .imagen > .flecha {
    --medida: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var( --medida );
    height: var( --medida );
    border: none;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}
#detalle .galeria-producto > .imagen > .flecha--izquierda {
    left: 10px;
}
#detalle .galeria-producto > .imagen > .flecha--derecha {
    right: 10px;
}
#detalle .galeria-producto > .imagen > .flecha > svg {
    width: 70%;
    height: auto;
    filter: drop-shadow( 0 2px 4px rgba( 0, 0, 0, .2 ) );
}
#detalle .agregar_al_carro {
    background-color: white;
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var( --z-index-agregar-al-carro );
}
#detalle .agregar_al_carro > .cantidades {
    display: flex;
    align-items: center;
    border-radius: 100px;
}
#detalle .agregar_al_carro > .cantidades > .btn {
    --medida-boton: 30px;
    background: var(--gris);
    width: var( --medida-boton );
    height: var( --medida-boton );;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
#detalle .agregar_al_carro > .cantidades > .btn.quitar {}
#detalle .agregar_al_carro > .cantidades > .btn.agregar {}
#detalle .agregar_al_carro > .cantidades > input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.4em;
}
#detalle .agregar_al_carro > button {
    height: 50px;
}
#detalle .galeria-producto > .thumbs {
    --gap: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: var( --gap );
}
#detalle .galeria-producto > .thumbs > img {
    width: calc( 100% / 5 - var( --gap ) );
    border: 2px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
}
#detalle .galeria-producto > .thumbs > img.activo {
    border-color: var( --primario );
}
#detalle .detalle-principal > .contenedor {
    width: 90%;
}
#detalle .resumen-producto > h1 {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 0;
}
#detalle .resumen-producto > h1::first-letter {
    text-transform: uppercase;
}
#detalle .resumen-producto > .descripcion_corta {}
#detalle .resumen-producto > .descripcion_corta::first-letter {
    text-transform: uppercase;
}
#detalle .resumen-producto > .valoraciones {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 6px;
}
#detalle .resumen-producto > .valoraciones > .estrellas {}
#detalle .resumen-producto > .valoraciones > .estrellas > svg {
    width: 20px;
}
#detalle .resumen-producto > .valoraciones > p {}
#detalle .resumen-producto > .precios {
    display: flex;
    margin-top: 14px;
    margin-bottom: 10px;
    gap: 5px;
    align-items: center;
}
#detalle .resumen-producto > .precios > .ahora {
    font-weight: var( --bold );
    font-size: 1.5em;
}
#detalle .resumen-producto > .precios > .antes {
    text-decoration: line-through;
    font-size: 1.3em;
}
#detalle .resumen-producto > .precios > .ahorras {
    font-size: 1.2em;
}
#detalle .resumen-producto > .envio-gratis {
    background-color: #f0f7ef;
    color: #20713b;
    border: 1px solid #cfe7d0;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 1em;
    font-weight: var( --bold );
    display: inline-flex;
    margin-bottom: 14px;
}






























#cuenta-regresiva-promocion {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #ff99001c;
    border: 1px solid var(--primario);
    border-radius: 6px;
    padding: 10px 5px;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
#cuenta-regresiva-promocion > .superior {
    display: flex;
    align-items: center;
    gap: 8px;
}
#cuenta-regresiva-promocion > .superior > svg {
    width: 20px;
}
#cuenta-regresiva-promocion > .superior > p {
    font-weight: var(--bold);
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1em;
    text-align: right;
}
#cuenta-regresiva-promocion > .cuenta-regresiva {
    display: flex;
    align-items: center;
    gap: 8px;
}
#cuenta-regresiva-promocion > .cuenta-regresiva > div {
    text-align: center;
}
#cuenta-regresiva-promocion > .cuenta-regresiva > span {
    font-weight: var(--bold);
}
#cuenta-regresiva-promocion > .cuenta-regresiva > div > span {
    font-size: 1.2em;
    font-weight: var(--bold);
}
#cuenta-regresiva-promocion > .cuenta-regresiva > div > p {}



























#detalle .resumen-producto > .stock {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
#detalle .resumen-producto > .stock > .signal {
    --medida: 18px;
    border: 1px solid #0da73fba;
    width: var( --medida );
    height: var( --medida );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#detalle .resumen-producto > .stock > .signal > span {
    --medida-dentro: 75%;
    background-color: #0DA73F;
    display: flex;
    width: var( --medida-dentro );
    height: var( --medida-dentro );
    border-radius: 50%;
}
#detalle .resumen-producto > .stock > p {}
#detalle .resumen-producto > .fecha-entrega {
    font-size: .9em;
}
#detalle .detalle-principal > .contenedor > .acordeones {
    margin-top: 40px;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon {
    margin-top: 20px;
    border: 1px solid var(--gris);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .titulo > p {
    font-size: 1.3em;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .titulo > p::first-letter {
    text-transform: uppercase;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .titulo > span {
    color: var( --primario );
    font-weight: var(--bold);
    font-size: 1.2em;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .contenido {
    display: none;
    margin-top: 20px;
    font-size: 1.1em;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .contenido > p {
    margin-bottom: 8px;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .contenido > ul {
    padding-left: 20px;
}
#detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .contenido > ul > li {
    margin-bottom: 14px;
}
#completa_tu_pedido {
    margin-top: 40px;
    margin-bottom: 40px;
}
#completa_tu_pedido > p {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: var( --bold );
}
#completa_tu_pedido > p::first-letter {
    text-transform: uppercase;
}
#completa_tu_pedido > .otros {
    --gap-otros: 10px;
    display: flex;
    flex-direction: column;
    gap: var( --gap-otros );
}
#completa_tu_pedido > .otros > .otro {
    border: 1px solid var( --gris );
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
    cursor: pointer;
}
#completa_tu_pedido > .otros > .otro > .campo_select {
    display: flex;
    align-items: center;
}
#completa_tu_pedido > .otros > .otro > .campo_select > .select {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gris);
    border-radius: 6px;
    padding: 3px;
}
#completa_tu_pedido > .otros > .otro[data-selected='true'] > .campo_select > .select {
    background-color: var( --primario );
    border: 1px solid transparent;
}
#completa_tu_pedido > .otros > .otro > .campo_select > .select > svg {
    width: 90%;
}
#completa_tu_pedido > .otros > .otro[data-selected='false'] > .campo_select > .select > svg {
    display: none;
}
#completa_tu_pedido > .otros > .otro > .imagen {
    width: 50%;
    display: flex;
    align-items: center;
}
#completa_tu_pedido > .otros > .otro > .imagen > img {
    width: 100%;
}
#completa_tu_pedido > .otros > .otro > .contenido {}
#completa_tu_pedido > .otros > .otro > .contenido > p.titulo {
    /* font-weight: var( --bold ); */
    font-size: .9em;
    line-height: 1.3em;
}
#completa_tu_pedido > .otros > .otro > .contenido > p.titulo::first-letter {
    text-transform: uppercase;
}
#completa_tu_pedido > .otros > .otro > .contenido > .precios {}
#completa_tu_pedido > .otros > .otro > .contenido > .precios > p.ahora {
    font-size: .9em;
    font-weight: var( --bold );
}
#completa_tu_pedido > .otros > .otro > .contenido > .precios > p.antes {
    text-decoration: line-through;
    font-size: 0.9em;
}
#completa_tu_pedido > .otros > .otro > .contenido > .precios > p.ahorras {
    font-size: 0.9em;
}
#detalle > #clientes_reales {
    margin-top: 50px;
}
#detalle > .bloque-confianza {
    margin-top: 50px;
    margin-bottom: 0;
}
#detalle > .bloque-confianza > #clientes_reales,
#detalle > .bloque-confianza > #sabemos_de_depilacion {
    margin: 0;
}
#detalle > .bloque-confianza > #clientes_reales {
    margin-bottom: 70px;
}
#detalle > .bloque-confianza > #sabemos_de_depilacion {
    border-radius: 8px;
}
#detalle > .bloque-confianza > #clientes_reales #carrusel {
    max-width: 360px;
    margin: 0 auto;
}



@media ( width >= 800px ) {
    #detalle > .detalle-principal.contenedor {
        width: min( 90%, 1180px );
        display: grid;
        grid-template-columns: minmax( 0, 1.15fr ) minmax( 360px, .85fr );
        gap: 44px;
        align-items: start;
        margin-top: 18px;
    }
    #detalle .galeria-producto {
        position: sticky;
        top: 86px;
        display: grid;
        grid-template-columns: 86px minmax( 0, 1fr );
        gap: 16px;
        align-items: start;
        background: transparent;
    }
    #detalle .galeria-producto > .imagen {
        grid-column: 2;
        aspect-ratio: 1 / 1;
        background: linear-gradient( 135deg, #fbf7f1, #f5faf8 );
        border: 1px solid #ece5db;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #detalle .galeria-producto:not(:has(> .thumbs)) {
        grid-template-columns: minmax( 0, 1fr );
    }
    #detalle .galeria-producto:not(:has(> .thumbs)) > .imagen {
        grid-column: 1;
    }
    #detalle .galeria-producto > .imagen > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #detalle .galeria-producto > .imagen > .flecha {
        --medida: 38px;
        background-color: rgba( 255, 255, 255, .82 );
        border: 1px solid rgba( 34, 34, 34, .08 );
        box-shadow: 0 8px 22px rgba( 34, 34, 34, .08 );
    }
    #detalle .galeria-producto > .imagen > .flecha:hover {
        background-color: white;
    }
    #detalle > .bloque-confianza {
        display: grid;
        grid-template-columns: minmax( 0, 1fr ) minmax( 0, 1fr );
        gap: 40px;
        align-items: start;
    }
    #detalle > .bloque-confianza > #clientes_reales {
        margin-bottom: 0;
    }
    #detalle > .bloque-confianza > #clientes_reales #carrusel {
        max-width: 320px;
    }
    #detalle .galeria-producto > .thumbs {
        grid-column: 1;
        grid-row: 1;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 12px;
        margin: 0;
        max-height: min( 620px, calc( 100vh - 126px ) );
        overflow-y: auto;
        padding-right: 2px;
    }
    #detalle .galeria-producto > .thumbs > img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border: 1px solid #e8e0d4;
        border-radius: 8px;
        background-color: #faf7f2;
        opacity: .72;
        transition: border-color .2s ease-out, opacity .2s ease-out, transform .2s ease-out;
    }
    #detalle .galeria-producto > .thumbs > img:hover,
    #detalle .galeria-producto > .thumbs > img.activo {
        border-color: var( --primario );
        opacity: 1;
        transform: translateY( -1px );
    }
    #detalle .detalle-principal > .contenedor {
        width: 100%;
        max-width: 470px;
        margin: 0;
    }
    #detalle .resumen-producto {
        border-bottom: 1px solid #ededed;
        padding-bottom: 20px;
    }
    #detalle .resumen-producto > h1 {
        font-size: clamp( 2em, 3vw, 3em );
        line-height: 1.02em;
        letter-spacing: 0;
        margin-top: 0;
        margin-bottom: 10px;
    }
    #detalle .resumen-producto > .descripcion_corta {
        font-size: 1.05em;
        line-height: 1.45em;
        color: #555;
        max-width: 38ch;
    }
    #detalle .resumen-producto > .valoraciones {
        margin-top: 14px;
        margin-bottom: 18px;
    }
    #detalle .resumen-producto > .valoraciones > .estrellas {
        display: flex;
        gap: 2px;
    }
    #detalle .resumen-producto > .valoraciones > p {
        color: #555;
        font-size: .9em;
    }
    #detalle .resumen-producto > .precios {
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 0;
        margin-bottom: 16px;
    }
    #detalle .resumen-producto > .precios > .ahora {
        font-size: 2em;
        line-height: 1em;
    }
    #detalle .resumen-producto > .precios > .antes {
        color: #777;
        font-size: 1.25em;
    }
    #detalle .resumen-producto > .precios > .ahorras {
        background-color: #f0f7ef;
        color: #20713b;
        border: 1px solid #cfe7d0;
        border-radius: 100px;
        padding: 4px 10px;
        font-size: .9em;
        font-weight: var( --bold );
    }
    #detalle .resumen-producto > .envio-gratis {
        font-size: .9em;
    }
    #cuenta-regresiva-promocion {
        align-items: stretch;
        border-color: #f0b556;
        background-color: #fff8ec;
        padding: 14px;
        margin-bottom: 18px;
    }
    #cuenta-regresiva-promocion > .superior {
        justify-content: space-between;
    }
    #cuenta-regresiva-promocion > .superior > p {
        text-align: left;
        font-size: .9em;
    }
    #cuenta-regresiva-promocion > .cuenta-regresiva {
        justify-content: space-between;
    }
    #cuenta-regresiva-promocion > .cuenta-regresiva > div {
        min-width: 54px;
        background-color: white;
        border: 1px solid #f3dfbc;
        border-radius: 8px;
        padding: 8px 6px;
    }
    #detalle .resumen-producto > .stock {
        margin-bottom: 6px;
    }
    #detalle .resumen-producto > .stock > p,
    #detalle .resumen-producto > .fecha-entrega {
        color: #444;
        font-size: .95em;
    }
    #detalle .agregar_al_carro {
        position: static;
        width: 100%;
        height: auto;
        z-index: auto;
        justify-content: stretch;
        gap: 12px;
        padding: 18px 0 4px;
        border-bottom: 1px solid #ededed;
        margin-bottom: 8px;
    }
    #detalle .agregar_al_carro > .cantidades {
        height: 52px;
        border: 1px solid #ddd;
        border-radius: 100px;
        padding: 0 10px;
        flex: 0 0 142px;
        justify-content: space-between;
    }
    #detalle .agregar_al_carro > .cantidades > .btn {
        background: #f2f2f2;
        cursor: pointer;
    }
    #detalle .agregar_al_carro > .cantidades > .btn:hover {
        background: #e6e6e6;
    }
    #detalle .agregar_al_carro > .cantidades > input {
        width: 44px;
        font-size: 1.15em;
        background: transparent;
    }
    #detalle .agregar_al_carro > button {
        height: 52px;
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
    #detalle .detalle-principal > .contenedor > .acordeones {
        margin-top: 12px;
    }
    #detalle .detalle-principal > .contenedor > .acordeones > .acordeon {
        margin-top: 0;
        border: none;
        border-bottom: 1px solid #ededed;
        border-radius: 0;
        padding: 16px 0;
    }
    #detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .titulo > p {
        font-size: 1em;
        font-weight: var( --bold );
    }
    #detalle .detalle-principal > .contenedor > .acordeones > .acordeon > .contenido {
        color: #555;
        font-size: .95em;
        line-height: 1.5em;
    }
    #completa_tu_pedido > .otros {
        --gap-otros: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    #completa_tu_pedido > .otros > .otro {
        width: calc( 100% / 3 - var( --gap-otros ) );
    }
    #completa_tu_pedido > .otros > .otro > .imagen {
        width: 10vw;
    }
}
