/******************** DESKTOP ********************/

.brand_cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand_cards_title {
    font-size: var(--op-title-size);
    font-weight: 400;
    color: #323232;
    text-align: center;
}

.stk .brand_cards_title{
    font-size: var(--stk-subtitle-size);
    font-weight: bold;
    color: var(--stk-body-color);
}

.brand_cards_productes_venda_div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    flex-grow: 0;
    align-items: stretch;
}

.brand_cards_producte_venda_a {
    flex-grow: 1;
    flex-basis: 33%;  
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: var(--op-brand-color-green);
}

.brand_cards_producte_venda_a .brand_cards_imatge {
    background-color: #f6f6f6;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    aspect-ratio: 1 / 1; 
}

.brand_cards_producte_venda {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: start;
    padding-top: 20px;
    flex-grow: 1;    
    padding-bottom: 40px;
}

.brand_cards_producte_venda_titol {
    color: var(--op-body-color-dark-neutral);
    font-size: var(--op-body-size);
    font-weight: 500;
    margin: 0;
    padding: 20px 30px;
    margin-bottom: 0;
}

.brand_cards_producte_venda_descripcio {
    font-size: var(--op-body-sub-size);
    color: var(--op-body-color-dark-neutral);
    margin: 0;
    padding: 0 30px;
    font-weight: 300;
}

.brand_cards_review_stars {
    width: 120px;
    padding: 0 30px 20px 30px;
}

.brand_cards_producte_venda_imatges {
    display: flex;
    flex-direction: column;
    min-height: 243px;
}

.brand_cards_producte_venda_img {
    margin-bottom: 10px;
}

.brand_cards_producte_venda_img_cesta {
    width: 65px;
    height: 65px;
    position: absolute;
    bottom: 25px;
    right: 0;
    margin-right: 25px;
    margin-bottom: 25px;
    background-color: white;
    border-radius: 50%;
}

.brand_cards_producte_venda_img_cesta:hover {
    opacity: 0.7;
}

.video_popup_div_overlay {
    position: fixed;
    z-index: 99999999;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.video_popup_div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    min-height: 75vh;
    display: inline-block;
}

.video_popup_div iframe {
    position:absolute;
    top:0;
    left:0;
    
    height: 100%;
    
    border-radius: 10px;
    width: 100%;
}

.video_popup_div_close {
    background-color: white;
    width: 36px;
    height: 36px;
    z-index: 9;
    position: absolute;
    cursor: pointer;
    left: 98%;
    top: 2%;
    transform: translateX(-100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    font-size: 15px;
}

.toggle_vermas {
    display: none;
}

.boton_vermas {
    display: none; 
}

/******************** MOBILE ********************/
@media (max-width: 990px) {
    #div_brand_cards{
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .brand_cards {
        width: auto;
        margin: 0;
        padding: 15px;
    }

    .brand_cards_title {
        margin: 0;
    }

    .brand_cards_productes_venda_div {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        margin-top:30px;
    }
    
    .brand_cards_producte_venda_a {
        flex-shrink: 0;
        flex-basis: 75% !important;
        border-top-left-radius: 10%;
        border-top-right-radius: 10%;
    }

    .brand_cards_producte_venda_a .brand_cards_imatge {
        padding: 0;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        
        
    }

    .brand_cards_producte_venda {
        gap: 10px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
    }
    
    .brand_cards_review_stars, .brand_cards_producte_venda_descripcio, .brand_cards_producte_venda_titol {
        padding: 0 10px;
    }

    .brand_cards_producte_venda_titol {
        min-height: auto;
        width: 86%;
    }

    .brand_cards_producte_venda_descripcio {
        margin: 0;
        width: 86%;
    }
    
    .brand_cards_producte_venda_imatges {
        min-height: 0;
}

    .brand_cards_producte_venda_img {
        width: 100%;
    }

    .brand_cards_producte_venda_img_cesta {
        bottom: -18px;
        right: -18px;
        margin-right: 15px;
        margin-bottom: 15px;
        width: 45px;
        height: 45px;
    }
    
    .video_popup_div {
        width: 90vw;
        height: auto;
        min-width: 90vw;
        min-height: auto;
    }
    .div_colapsible{
        position: relative;
    }

    .toggle_vermas{
        display:none;
    }

    .text_clamp{
        display:-webkit-box;
        -webkit-line-clamp:5;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .boton_vermas{
        display:inline;
        padding-left:10px;
        text-decoration:underline;
        cursor:pointer;
        font-size:14px;
    }

    .boton_vermas::after{
        content:attr(data-text);
    }

    .toggle_vermas:checked ~ .text_clamp{
        -webkit-line-clamp:unset;
        display:block;
    }

    .toggle_vermas:checked ~ .boton_vermas{
        display:none;
    }
}
