/* Autre -------------------------------------------------------*/
.gradient-icon i{
      background: linear-gradient(150deg, #12c2e9de 23%, #c471edde 45%, #f64f59de 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}





/* Pour une image carrée ajustée 1:1 en ratio : */
.vb_ratio_1_1_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}





/* Pour l'apparence du breadcrumb dans la boutique en ligne */
.vb-breadcrumb {
    font-size: 22px;
}

/* Pour l'apparence de la boutique custum */
.vb_boutique {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
}

.vb_produit {
    list-style: none;
    border: 1px solid #e6e6e6;
    padding: 1rem;
    border-radius: 6px;
    background: #fff;
    box-shadow: 2px 2px 5px #b2b2b2;
    
    text-align: center !important;
}

.vb_img_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.vb_title_list {
    font-size: 25px; 
    font-weight: bold !important;
}

/* texte "en stock" */
.vb_in_stock_tag {
    color: #054000;
}

.vb_low_stock_tag {
    color: #800000;
}

/* texte "Épuisé" */
.vb_out_stock_tag {
    color: #676767;
}



/* Pour l'affichage de tout se qui se trouve dans la page "article" de la boutique en ligne */
/* image de l'article */
.vb-article-page-image {
    width: 100%;
    height: auto;
    display: block;
}


.vb_add_to_cart_button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 999px;
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}





/* input type text de la recherche de produits dans WooCommerce ===================================*/
.product-search {
    display: flex;
    align-items: center;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 6px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mobile_product-search {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 6px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-search:focus-within {
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.product-search input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 16px;
    background: transparent;
}

.mobile_product-search input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 16px;
    background: transparent;
}

.product-search button {
    height: 50px !important;
    width: 50px !important;

    border: none;
    border-radius: 999px;
    cursor: pointer;

    background-color: #4CAF50;
    background-image: url("https://www.valleeboreale.ca/img/Search-50.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

.product-search button:hover {
    background: #43a047;
    background-image: url("https://www.valleeboreale.ca/img/Search-50.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

.product-search button:active {
    transform: scale(0.95);
}
/* ================================================================================================ */




/* Icone panier personnalisé (hors WooCommerce) =================================================== */
.vb_cart_btn {
    background: #4CAF50;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    max-width: 180px;
}

.vb_cart_btn__col1 {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vb_cart_icn {
    width: 30px;
    height: 30px;
}

.vb_cart_btn__col2 {
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    line-height: 60px;
}