/*
Theme Name: BIG BOSS LATAM - Astra Child
Theme URI: https://www.bigbosslatam.com/
Description: Tema hijo de Astra para BIG BOSS LATAM. Contiene las personalizaciones del catálogo B2B y las plantillas de producto WooCommerce.
Author: BIG BOSS LATAM
Template: astra
Version: 1.0.0
Text Domain: bigboss-astra-child
*/

/*
 * BIG BOSS LATAM
 * Los estilos específicos del catálogo y PDP
 * se añadirán posteriormente.
 */

/* =========================================================
   BIG BOSS LATAM
   PDP - Productos relacionados
   Ajuste 2026-09-17
========================================================= */

.bb-pdp__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bb-pdp__related-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none !important;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.bb-pdp__related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
    border-color: #cfd5dd;
}


/* IMAGEN 1:1 */

.bb-pdp__related-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    margin: 0 !important;
    background: #fff;
}

.bb-pdp__related-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
}


/* CONTENIDO */

.bb-pdp__related-body {
    position: relative !important;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    padding: 18px 16px 20px;
    margin: 0 !important;
    transform: none !important;
    background: #fff;
}

.bb-pdp__related-brand {
    display: block;
    margin: 0 0 10px;
    color: #002b8f;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bb-pdp__related-body h3 {
    position: static !important;
    display: block;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #141b2b;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    transform: none !important;
}

.bb-pdp__related-body p {
    position: static !important;
    margin: auto 0 0 !important;
    padding: 0 !important;
    color: #768196;
    font-size: 12px;
    line-height: 1.4;
    transform: none !important;
}


/* TABLET */

@media (max-width: 900px) {

    .bb-pdp__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .bb-pdp__related-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bb-pdp__related-image {
        padding: 20px;
    }

    .bb-pdp__related-body {
        padding: 16px;
    }

    .bb-pdp__related-body h3 {
        font-size: 15px;
    }

}


/* =========================================================
   BIG BOSS LATAM
   PDP - Boton Consultar producto
========================================================= */

.bb-pdp__btn--yellow{
    border:1px solid transparent;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.bb-pdp__btn--yellow:hover,
.bb-pdp__btn--yellow:focus-visible{
    border-color:#050d35;
    transform:translateY(-2px);
    box-shadow:0 7px 16px rgba(5,13,53,.12);
}

.bb-pdp__btn--yellow:active{
    transform:translateY(0);
    box-shadow:none;
}


/* =========================================================
   BIG BOSS LATAM
   PDP - Hover unificado de botones
========================================================= */

.bb-pdp__btn--outline,
.bb-pdp__btn--yellow{
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.bb-pdp__btn--outline:hover,
.bb-pdp__btn--outline:focus-visible,
.bb-pdp__btn--yellow:hover,
.bb-pdp__btn--yellow:focus-visible{
    border-color:#050d35;
    transform:translateY(-2px);
    box-shadow:0 7px 16px rgba(5,13,53,.12);
}

.bb-pdp__btn--outline:active,
.bb-pdp__btn--yellow:active{
    transform:translateY(0);
    box-shadow:none;
}


/* =========================================================
   BIG BOSS LATAM
   PDP - Icono Abrir documentacion
========================================================= */

.bb-pdp__doc-open{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.bb-pdp__doc-arrow{
    display:block;
    width:16px;
    height:16px;
    flex:0 0 16px;
}

