/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://example.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/*==========================
     ICONE SHORTCODE
=========================*/

.icon-btn {
    color: #a35c9d;
    margin-right: 10px;
}

/* =========================
   SEARCH POPUP FIX
========================= */

/* allarga box */
#searchOverlay .box{
    width: 500px;
    max-width: 90%;
    padding: 30px;
}

/* input più grande */
#searchOverlay input[type="text"]{
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* bottone X */
#closeSearch{
    position: absolute;
    top: -5px;
    right: -5px;
    background: none;
    border: none;
    font-size: 26px;
    color: #000;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    font-weight: 700;
}

/* hover viola */
#closeSearch:hover{
    color: #762D88;
}

/* =========================
   AUTH POPUP FIX
========================= */

/* allarga box */
#authOverlay .box{
    width: 460px;
    max-width: 90%;
    padding: 35px 30px;
}

/* input */
#authOverlay input{
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* spazio tra elementi */
#authOverlay .tab{
    gap: 12px;
}

/* bottone principale */
#authOverlay button{
    padding: 12px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}

#authOverlay button:hover{
    background: #762D88;
}

/* X LOGIN/REGISTER - stile corretto */
#closeAuth{
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent !important;
    border: none !important;

    font-size: 28px;
    font-weight: 700;
    color: #000 !important;

    cursor: pointer;
    line-height: 1;

    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
}
/* hover viola */
#closeAuth:hover{
    color: #762D88;
}

/* tabs */
#authOverlay .tabs{
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

#authOverlay .tabs button{
    flex: 1;
    background: none;
    color: #666;
    padding: 10px;
    font-weight: 500;
}

#authOverlay .tabs button:hover{
    color: #762D88;
}

/* tab attiva */
#authOverlay .tabs button.active{
    color: #000;
    border-bottom: 2px solid #762D88;
}

/* messaggi */
#loginMsg,
#registerMsg{
    font-size: 13px;
    margin-top: 5px;
}

/* link password */
#authOverlay a{
    color: #666;
    text-decoration: none;
}

#authOverlay a:hover{
    color: #762D88;
}
#registerBox label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

/* checkbox dimensione coerente */
#registerBox label input[type="checkbox"]{
    margin: 0;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
/* =========================
   BOTTONI LOGIN / REGISTER
========================= */

#authOverlay .tab button{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;

    background: #F3B3D2;
    color: #000;

    border: none;
    border-radius: 6px;

    padding: 12px;
    cursor: pointer;

    transition: all 0.2s ease;
}

#authOverlay .tab button:hover{
    background: #7B3289;
    color: #fff;
}

#authOverlay .tabs button{
    background: transparent !important;
    color: #666;
    font-weight: 500;
    text-transform: none;
    padding: 10px;
    border: none;
    cursor: pointer;
}

/* hover SOLO testo, NO background */
#authOverlay .tabs button:hover{
    background: transparent !important;
    color: #7B3289;
}

/* stato attivo */
#authOverlay .tabs button.active{
    color: #000;
    border-bottom: 2px solid #7B3289;
}
/* =========================
   VISIBILITY FIX (FONDAMENTALE)
========================= */

/* overlay nascosti di default */
.overlay{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* quando attivi */
.overlay.active{
    display: flex;
}

.overlay .box{
    background: #fff;
    width: 380px;
    max-width: 92%;
    padding: 25px;

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    position: relative;
}

/* dropdown account nascosto */
.account-dropdown{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    z-index: 999;
}

/* quando attivo */
.account-dropdown.active{
    display: block;
}
/* tabs contenuto */
#authOverlay .tab{
    display: none;
}

/* tab attiva */
#authOverlay .tab.active{
    display: flex;
    flex-direction: column;
}

/* Scheda prodotto*/

/* =========================
   BREADCRUMBS
========================= */
.product-breadcrumbs{
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 20px 0 40px;
}

.product-breadcrumbs a{
    color: #000;
    text-decoration: none;
}

/* separatore > */
.woocommerce-breadcrumb{
    color: #000;
}

/* =========================
   LAYOUT
========================= */
.product-layout{
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.product-gallery{
    flex: 1;
}

.main-image img{
    width: 100%;
    height: auto;
}

/* gallery thumbnails */
.thumbnail-gallery{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-gallery img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
}

/* RIGHT */
.product-info{
    flex: 1;
}

/* SEO TITLE */
.seo-title{
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-title .dot{
    width: 15px;
    height: 15px;
    background: #F5B5D3;
    border-radius: 50%;
}

/* PRODUCT TITLE */
.product-title{
    font-family: Poppins, sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    color: #762C86;
    margin: 10px 0;
}

/* PRICE */
.product-price{
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.characteristics-grid{
    display:grid;
    grid-template-columns:repeat(2, max-content);
    column-gap:25px;
    row-gap:6px;
}

.char-row,
.composition{
    display:flex;
    gap:6px;
    align-items:center;
}

.char-row strong,
.composition strong{
    flex-shrink:0;
}
.toggle-title{
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
}

.toggle-icon{
    font-size:24px;
    font-weight:400;
    line-height:1;
    color:#762C86;
}

.toggle-title::after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.toggle-title.active::after{
    content:"−";
}

.toggle-content{
    display:none;
}

@media (max-width:768px){
    .characteristics-grid{
        grid-template-columns:1fr;
    }
}

.club-lana-consiglio{
    background:#fff;
    margin:50px 0 0 120px;
    position:relative;
    overflow:hidden;
    min-height:350px;
}

.club-lana-content{
    width:70%;
    position:relative;
    z-index:2;
}

.club-lana-logo{
    position:absolute;
    right:20px;
    bottom:-10px;
}

.club-lana-logo img{
    width:320px;
    height:auto;
}

.club-lana-title{
    font-family:"Dancing Script", cursive;
    font-size:35px;
    font-weight:900;
    color:#762C86;
    margin-top:20px;
    margin-bottom:10px;
    line-height:1.2;
}

.club-lana-text{
    font-family:"Poppins", sans-serif;
    font-size:16px;
    font-weight:400;
    color:#000;
    margin-top:6px;
    line-height:1.8;
}

@media (max-width:768px){

    .club-lana-consiglio{
        margin:30px 20px 0;
        padding:25px;
        flex-direction:column;
    }

    .club-lana-content,
    .club-lana-logo{
        width:100%;
    }

    .club-lana-logo{
        margin-top:20px;
        justify-content:center;
    }

    .club-lana-logo img{
        max-width:180px;
    }

    .club-lana-title{
        font-size:28px;
    }
}

/* CART */
.cart-box{
    display: flex;
    gap: 10px;
    margin: 20px 0 60px;
}

/* SHORT DESC */
.short-desc{
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 20px;
}

/* COMPOSITION */
.composition{
    font-family: Poppins, sans-serif;
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}

.composition strong{
    font-weight: 700;
}

.treatament-title {
    Font-family: Poppins;
    font-size: 16px;
    font-weight:700;
    margin-top: 30px;
}

.product-care-icons{
    display:flex;
    gap:15px;
    align-items:center;
    margin-top:15px;
}

.product-care-icons img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.characteristics-title{
    font-family: "Dancing Script", cursive;
    font-size: 35px;
    font-weight: 900;
    color: #762C86;
    margin-top: 20px;
    margin-bottom: 10px;

}

.char-row{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
}

.char-row strong{
    font-weight: 700;
    color: #000;
}

.char-row span{
    font-weight: 400;
    color: #000;
}

.char-text{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 6px;
}
.product-characteristics {
    margin: 50px 0;
    background-color: #f2f2f2;
    padding: 30px 120px 50px;
}
.product-care-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.care-icon {
    position: relative;
    display: inline-block;
    cursor: help;
}

.care-icon img {
    width: 25px;
    height: auto;
    display: block;
}

/* Tooltip */
.care-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 9999;
    opacity: 1;
}

/* freccina opzionale */
.care-icon:hover::before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}
.single_variation_wrap .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.single_variation_wrap .quantity {
    margin: 0;
}

.single_variation_wrap .single_add_to_cart_button {
    margin: 0 !important;
    white-space: nowrap;
}
.variations {
    margin-top: 30px;
}

/* =========================
   LASCIATI ISPIRARE
========================= */

.ispirazioni-section {
    background: rgba(118,44,134,0.1);
    padding: 80px 120px;
}

.ispirazioni-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ispirazioni-title {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    color: #762C86;
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   GRID PRINCIPALE
========================= */

.ispirazioni-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* =========================
   COLONNA DESTRA
========================= */

.isp-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* DUE CARD AFFIANCATE */

.isp-right-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* =========================
   CARD
========================= */

.isp-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    display: block;
}

/* CARD GRANDE */

.isp-card.big {
    height: 670px;
}

/* CARD PICCOLE */

.isp-card.small {
    min-height: 300px;
}

/* =========================
   IMMAGINI
========================= */

.isp-image {
    width: 100%;
    height: 100%;
}

.isp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   TESTI
========================= */

.isp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0)
    );
}

.isp-date {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.isp-content h4 {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    width: 90%;;
}
.isp-excerpt {
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 8px;
    opacity: 0.9;
    width: 90%;
}
/* =========================
   NEWSLETTER
========================= */

.newsletter-box {
   /* background: #fff;*/
    /*padding: 40px;*/
    border-radius: 20px;
}

.newsletter-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4E4E4E;
    margin-bottom: 0px;
    line-height: 1.4;
}
#forminator-module-126 {
    margin: 0px !important;
}

/* =========================
   TITOLI SEZIONE
========================= */

.related-products-section {
    margin: 80px 0;
    padding: 0 120px;
}

.related-title {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    color: #762C86;
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   CAROUSEL WRAPPER
========================= */

.related-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

/* nasconde scrollbar */
.related-carousel::-webkit-scrollbar {
    display: none;
}

/* =========================
   CARD PRODOTTO
========================= */

.related-card {
    flex: 0 0 calc(33.3333% - 17px);
    border: 1px solid #707070;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

/* =========================
   IMMAGINE
========================= */

.related-image img {
    width: 100%;
    height: auto !important;
    display: block;
    height: 350px;
}

/* =========================
   CONTENUTO
========================= */

.related-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* titolo prodotto */

.related-title-product {
    Poppins;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #4e4e4e !important;
    height: 60px;
}

/* prezzo */

.related-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #762C86;
    font-weight: 600;
}

/* bottone */

.related-btn {
    margin-top: auto;
    background: #762C86 !important;
    color: #fff !important;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.related-btn:hover {
    background: #5e226d;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/*==================================
    MEGA MENU
==================================*/

#menu-item-28{
    position:relative;
}

/* CONTENITORE */

.custom-products-megamenu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);

    width:1100px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;

    padding:40px;

    background:#fff;
    border-radius:10px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transition:all .25s ease;

    z-index:99999;
}

#menu-item-28:hover .custom-products-megamenu{
    opacity:1;
    visibility:visible;
}

/*==========================
    COLONNE
==========================*/

.mega-column h4{
    margin:0 0 18px;

    font-family:Poppins;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;

    color:#4e4e4e;
}

/*==========================
    GRUPPI
==========================*/

.mega-group{
    margin-bottom:12px;
}

/*==========================
    CATEGORIA PRINCIPALE
==========================*/

.mega-parent{
    display:block;

    position:relative;

    padding:8px 22px 8px 0;

    font-family:Poppins;
    font-size:18px;
    font-weight:600;

    color:#4e4e4e;
    text-decoration:none;

    transition:.25s;
}

.mega-parent:hover{
    color:#762c86;
}

/*==========================
    FRECCIA
==========================*/

/* Solo se la categoria ha sottocategorie */

.has-children > .mega-parent{
    cursor:pointer;
}

/* Chevron */

.has-children > .mega-parent::after{

    content:"";

    position:absolute;

    right:2px;
    top:50%;

    width:7px;
    height:7px;

    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;

    transform:translateY(-60%) rotate(45deg);

    transition:transform .25s ease;

}

/* Freccia aperta */

.mega-group.open > .mega-parent::after{

    transform:translateY(-40%) rotate(225deg);

}

/*==========================
    SOTTOCATEGORIE
==========================*/

.mega-children{

    display:block;

    margin-top:8px;
    margin-left:18px;

}

.mega-child{

    display:block;

    padding:5px 0;

    font-family:Poppins;
    font-size:16px;
    font-weight:400;

    color:#666;
    text-decoration:none;

    transition:.2s;

}

.mega-child:hover{

    color:#762c86;

    padding-left:6px;

}

/*==========================
    LINK NORMALI
==========================*/

.mega-column > a{

    display:block;

    padding:6px 0;

    font-family:Poppins;
    font-size:18px;
    font-weight:500;

    color:#4e4e4e;
    text-decoration:none;

    transition:.2s;

}

.mega-column > a:hover{

    color:#762c86;

    padding-left:5px;

}

/*==========================
    CHEVRON MENU HEADER
==========================*/

.fa-chevron-down{

    margin-left:5px;

    font-size:12px;
    font-weight:900;

}

/*==========================
    TABLET
==========================*/

@media (max-width:1024px){

    .custom-products-megamenu{

        width:95vw;

        grid-template-columns:repeat(2,1fr);

        gap:30px;

    }

}

/*==========================
    MOBILE
==========================*/

@media (max-width:767px){

    .custom-products-megamenu{

        position:relative;

        top:auto;
        left:auto;

        transform:none;

        width:100%;

        grid-template-columns:1fr;

        opacity:1;
        visibility:visible;

        box-shadow:none;
        border-radius:0;

        padding:20px;

    }

}
/*========================
    PAGINA ARCHIVIO
============================*/

.shop-hero {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover; /* oppure contain */
}

.fp-shop-wrapper {
    MARGIN: 80px;
}
.shop-hero__content {
    padding: 120px;
    width: 65% !important;
        
}
.shop-category-description {
    margin-right: 35%;
}
.shop-hero__title {
    font-family: Dancing Script;
    font-size: 65px;
    font-weight: 700;
    color: #762C86 !important;
}
.shop-category-description {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    color: #4e4e4e;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background-color: #f4b3d1 !important;
    color: #782f88 !important;
    border-radius: 12px !important;
    padding: 15px 25px !important;
    font-family: Poppins !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
       background-color: #782f88 !important;
    color: #fff !important; 
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #782f88;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
}
h2.woocommerce-loop-product__title {
    font-family: Poppins;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #4e4e4e !important;
    height: 60px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .related-card {
        flex: 0 0 80%;
    }
}

@media (max-width: 600px) {

    .related-card {
        flex: 0 0 100%;
    }
}
@media (max-width: 991px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .ispirazioni-grid {
        grid-template-columns: 1fr;
    }

    .isp-right-top {
        grid-template-columns: 1fr;
    }

    .isp-card.big,
    .isp-card.small {
        min-height: 450px;
    }
}

/* =========================
   BLOG
========================= */

/*==================================================
BLOG GRID
==================================================*/

.cll-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:40px;
    margin:60px 0;
}

@media(max-width:1024px){

    .cll-blog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

}

@media(max-width:767px){

    .cll-blog-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

}


/*==================================================
CARD
==================================================*/

.cll-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.cll-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 50px rgba(120,47,136,.18);

}


/*==================================================
IMAGE
==================================================*/

.cll-card-image{

    display:block;

    position:relative;

    overflow:hidden;

}

.cll-card-image img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:.45s ease;

    display:block;

}

.cll-card:hover img{

    transform:scale(1.05);

}


/*==================================================
BADGE
==================================================*/

.cll-card-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#782f88;

    color:#fff;

    font-size:13px;

    font-weight:600;

    padding:8px 14px;

    border-radius:999px;

    line-height:1;

}


/*==================================================
CONTENT
==================================================*/

.cll-card-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.cll-card h3{

    margin:0 0 15px;

    font-size:22px !important;

    line-height:1.2;
    
    color: #762C86;
    
    font-family: Poppins;

}

.cll-card h3 a{

    color:#222;

    text-decoration:none;

}

.cll-card h3 a:hover{

    color:#782f88;

}

.cll-card p{

    color:#4e4e4e;

    line-height:1.7;

    margin:0 0 25px;

    flex:1;
    
    font-family: Poppins;

}


/*==================================================
META
==================================================*/

.cll-meta-item{

    display:flex;
    align-items:center;
    gap:8px;

    color:#777;
    font-size:14px;

}

.cll-meta-item i{

    color:#782f88;
    font-size:15px;

}

.cll-card-arrow{

    margin-left:auto;

    width:42px;
    height:42px;

    border-radius:50%;

    background:#f4b3d1;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#782f88;
    text-decoration:none;

    transition:.3s ease;

}

.cll-card-arrow i{

    font-size:15px;

}

.cll-card-arrow:hover{

    background:#782f88;
    color:#fff;

}


/*==================================================
LOAD MORE
==================================================*/

.cll-load-more-wrap{

    text-align:center;

    margin:70px 0;

}

#cll-load-more{

    background:#782f88;

    color:#fff;

    border:none;

    border-radius:999px;

    padding:18px 36px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

#cll-load-more:hover{

    background:#5f246d;

    transform:translateY(-2px);

}

#cll-load-more:disabled{

    opacity:.7;

    cursor:default;

}

#cll-load-more.is-loading{

    position:relative;

    padding-left:58px;

}

#cll-load-more.is-loading::before{

    content:"";

    position:absolute;

    left:24px;

    top:50%;

    width:18px;

    height:18px;

    margin-top:-9px;

    border:2px solid rgba(255,255,255,.4);

    border-top-color:#fff;

    border-radius:50%;

    animation:cll-spin .7s linear infinite;

}

@keyframes cll-spin{

    to{

        transform:rotate(360deg);

    }

}


/*==================================================
END MESSAGE
==================================================*/

.cll-end-message{

    text-align:center;

    color:#782f88;

    font-size:18px;

    font-weight:600;

    margin:30px 0 80px;

}


/*==================================================
SMOOTH ENTRANCE
==================================================*/

.cll-card{

    animation:cllFade .5s ease both;

}

@keyframes cllFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.single-product .woocommerce .quantity .qty {
    width: 4.2em !important;
}

/*Tendina Login*/
.account-dropdown.active {
    display: flex !important;
    flex-direction: column !important;
    padding: 15px 20px;
}

.account-dropdown.active a {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4E4E4E;
    margin-top: 20px;
}

.account-dropdown .active a::hover {
    color: #782F88;
}

.header-icons {
      display: flex;
    flex-direction: row;  
}
#loginMsg, #registerMsg
 {
    font-size: 16px;
    margin-top: 5px;
}

/*Schemi pagina prodotto*/

.product-schemi {
    margin: 80px 120px;
}

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

.product-schemi-title {
    font-family: "Dancing Script", cursive;
    font-size: 35px;
    font-weight: 900;
    color: #762C86;
    margin-top: 20px;
    margin-bottom: 10px;
}

.cs-card-horizontal{
    display:flex;
    gap:16px;
    height:100%;
}

.cs-card-horizontal__image{
    flex:0 0 90px;
    width:90px;
}

.cs-card-horizontal__image img{
    width:90px;
    height:90px;
    object-fit:cover;
}

.cs-card-horizontal__title{
    font-size:16px !important;
    line-height:1.3;
}

.cs-card-horizontal__footer a.button {
    background-color: #7f54b3 !important;
    color: #fff !important;
}

@media (max-width:1024px){

    .product-schemi-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:767px){

    .product-schemi-grid{
        grid-template-columns:1fr;
    }

}

* {
    box-sizing: content-box;
}

/* Pulsante "Vai al carrello" */
a.added_to_cart.wc-forward{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px;
    margin-top:14px;
    padding:10px;
    background:#782f88;
    color:#fff !important;
    border-radius:999px;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:1;
    text-decoration:none;
    transition:all .25s ease;
    box-shadow:0 8px 22px rgba(120,47,136,.18);
        flex-direction: row;
            width: 90%;
}

a.added_to_cart.wc-forward::before{
    content:"🛒";
    font-size:15px;
}

a.added_to_cart.wc-forward:hover{
    background:#64276f;
    color:#fff !important;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(120,47,136,.28);
}

/* ==========================================================
   BARRA PROGRESSO
========================================================== */

.cdl-progress{

    position:relative;

    width:100%;

    height:12px;

    margin-top:10px;

    background:#ececec;

    border-radius:30px;

    overflow:visible;

}

.cdl-progress-bar{

    height:100%;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        #782f88 0%,
        #b35ca8 55%,
        #f4b3d1 100%
    );

    transition:width .45s ease;

}

/* ==========================================================
   PUNTI SULLA BARRA
========================================================== */

.cdl-progress-steps {
    position: absolute;
    inset: 0;
}

.step-dot {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #782f88;
    transform: translate(-50%, -50%);
}

.step-start {
    left: 0;
    transform: translate(0, -50%);
}


/* ==========================================================
   ETICHETTE
========================================================== */

.cdl-progress-labels {
    position: relative;
    height: 62px;
    margin-top: 18px;
}

.cdl-progress-labels .step {
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    min-width: 90px;
}

.cdl-progress-labels .step strong {
    display: block;
    color: #782f88;
    font-size: 15px;
    font-weight: 700;
}

.cdl-progress-labels .step small {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
}

.cdl-progress-labels .step-start {
    left: 0;
    transform: none;
    text-align: left;
    min-width: 0;
}

.cdl-progress-labels .step-shipping {
    left: 72%;
}

.cdl-progress-labels .step-gift {
    left: 87%;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .cdl-progress-labels {
        height: 70px;
    }

    .cdl-progress-labels .step {
        min-width: 80px;
        max-width: 110px;
    }

    .cdl-progress-labels .step strong {
        font-size: 14px;
    }

    .cdl-progress-labels .step small {
        font-size: 11px;
    }

    .cdl-progress-labels .step-shipping {
        left: 68%;
    }

    .cdl-progress-labels .step-gift {
        left: 88%;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .cdl-progress-labels {
        height: 82px;
        margin-top: 16px;
    }

    .cdl-progress-labels .step {
        min-width: 65px;
        max-width: 85px;
    }

    .cdl-progress-labels .step strong {
        font-size: 12px;
        line-height: 1.2;
    }

    .cdl-progress-labels .step small {
        margin-top: 3px;
        font-size: 10px;
        line-height: 1.25;
        white-space: normal;
    }

    .cdl-progress-labels .step-shipping {
        left: 67%;
    }

    .cdl-progress-labels .step-gift {
        left: 88%;
    }
}


/* ==========================================================
   MOBILE STRETTO
========================================================== */

@media (max-width: 480px) {

    .cdl-progress-labels {
        height: 86px;
    }

    .cdl-progress-labels .step {
        min-width: 58px;
        max-width: 72px;
    }

    .cdl-progress-labels .step strong {
        font-size: 11px;
    }

    .cdl-progress-labels .step small {
        font-size: 9px;
    }

    .cdl-progress-labels .step-shipping {
        left: 65%;
    }

    .cdl-progress-labels .step-gift {
        left: 87%;
    }
}

/* ==========================================================
   PAGINA CARRELLO
========================================================== */

.woocommerce-cart .page-content{
    max-width:1400px;
    margin:0 auto;
    padding:40px 20px 80px;
}

/* ==========================================================
   BANNER PROMO
========================================================== */

.cdl-cart-progress-wrapper{
    margin:45px 0 55px;
}

/* ==========================================================
   TABELLA
========================================================== */

.woocommerce-cart table.shop_table{
    border-collapse:separate;
    border-spacing:0 18px;
    border:none;
    background:transparent;
}

.woocommerce-cart table.shop_table th{
    background:#782f88;
    color:#fff;
    border:none;
    padding:18px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.woocommerce-cart table.shop_table td{
    padding:22px 18px;
    vertical-align:middle;
    border-top:1px solid #efe5ec;
    border-bottom:1px solid #efe5ec;
    background:#fff;
}

.woocommerce-cart table.shop_table td:first-child{
    border-left:1px solid #efe5ec;
    border-radius:18px 0 0 18px;
}

.woocommerce-cart table.shop_table td:last-child{
    border-right:1px solid #efe5ec;
    border-radius:0 18px 18px 0;
}

/* ==========================================================
   PRODOTTO
========================================================== */

.woocommerce-cart .product-thumbnail{
    width:110px;
}

.woocommerce-cart .product-thumbnail img{
    width:90px;
    border-radius:16px;
    background:#faf7fb;
    padding:8px;
    border:1px solid #eee;
}

.woocommerce-cart .product-name a{
    color:#333;
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    transition:.2s;
}

.woocommerce-cart .product-name a:hover{
    color:#782f88;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal{
    color:#782f88;
    font-size:20px;
    font-weight:700;
}

/* ==========================================================
   QUANTITA'
========================================================== */

.woocommerce-cart input.qty{
    width:70px;
    height:46px;
    border-radius:12px;
    border:1px solid #ddd;
    font-weight:600;
    text-align:center;
}

/* ==========================================================
   ELIMINA
========================================================== */

.woocommerce-cart a.remove{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f9edf5;
    color:#782f88!important;
    transition:.2s;
}

.woocommerce-cart a.remove:hover{
    background:#782f88!important;
    color:#fff!important;
}

/* ==========================================================
   COUPON
========================================================== */

.woocommerce-cart .coupon{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.woocommerce-cart .coupon input{
    width:260px;
    height:48px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:0 16px;
}

/* ==========================================================
   BOTTONI
========================================================== */

.woocommerce-cart .button{
    background:#782f88!important;
    color:#fff!important;
    border:none!important;
    border-radius:12px!important;
    padding:14px 24px!important;
    font-weight:600!important;
    transition:.25s;
}

.woocommerce-cart .button:hover{
    background:#5f2369!important;
}

.woocommerce-cart .checkout-button{
    width:100%;
    padding:18px!important;
    font-size:17px!important;
}

/* ==========================================================
   TOTALI
========================================================== */

.cart-collaterals{
    margin-top:40px;
}

.cart_totals{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.cart_totals h2{
    color:#782f88;
    font-size:34px;
    margin-bottom:30px;
}

.cart_totals table{
    border:none!important;
}

.cart_totals table td,
.cart_totals table th{
    padding:16px 0!important;
    border:none!important;
    background:transparent!important;
}
.cart-subtotal th, .woocommerce-shipping-totals.shipping th {
color:#782f88 !important;
}


.cart_totals .order-total td,
.cart_totals .order-total th{
    color:#782f88 !important;
    font-size:24px;
    font-weight:700;
}

/* ==========================================================
   PAGAMENTI EXPRESS
========================================================== */

.wc-proceed-to-checkout>*{
    margin-bottom:12px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: block;
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.25em !important;
    padding: 1em !important;
    width: 90%;
}

/* ==========================================================
   MESSAGGI
========================================================== */

.woocommerce-message,
.woocommerce-info{
    border-radius:16px;
    border:none;
    padding:20px 25px;
    margin-bottom:30px;
}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

    .woocommerce-cart table.shop_table{
        border-spacing:0;
    }

    .woocommerce-cart .coupon{
        flex-direction:column;
        align-items:stretch;
    }

    .woocommerce-cart .coupon input{
        width:100%;
    }

    .woocommerce-cart .coupon .button{
        width:100%;
    }

    .cart_totals{
        margin-top:35px;
        padding:25px;
    }

    .cart_totals h2{
        font-size:28px;
    }

    .product-thumbnail img{
        width:70px;
    }

}

/* ==========================================================
   MESSAGGI WOOCOMMERCE
========================================================== */

.woocommerce-notices-wrapper{
    margin:0 0 30px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{

    position:relative;

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 24px 18px 60px;

    background:#f8eefb;

    border:1px solid #e4cde9;

    border-left:5px solid #782f88;

    border-radius:16px;

    color:#444;

    font-size:15px;

    line-height:1.5;

    box-shadow:0 8px 24px rgba(0,0,0,.04);

}

.woocommerce-message::before{

    content:"✓";

    position:absolute;

    left:22px;

    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#782f88;

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.woocommerce-info::before{

    content:"i";

    position:absolute;

    left:22px;

    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#4d8ed6;

    color:#fff;

    font-weight:700;

}

.woocommerce-error::before{

    content:"!";

    position:absolute;

    left:22px;

    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#d9534f;

    color:#fff;

    font-weight:700;

}

.woocommerce-message::after,
.woocommerce-info::after,
.woocommerce-error::after{

    display:none;

}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a{

    color:#782f88;

    font-weight:600;

    text-decoration:none;

}

.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover{

    text-decoration:underline;

}
/* ==========================================================
   BOX TOTALI CARRELLO
========================================================== */

.cart-collaterals{

    margin-top:40px;

}

.cart_totals{

    background:#fff;

    border:1px solid #f1e4ee;

    border-radius:22px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.cart_totals h2{

    margin:0 0 28px;

    color:#782f88;

    font-size:30px;

    font-weight:700;

}

/* ==========================================================
   TABELLA
========================================================== */

.cart_totals table{

    width:100%;

    border:none!important;

    border-collapse:collapse;

    margin-bottom:30px;

}

.cart_totals table tr{

    border-bottom:1px solid #f2e7ef;

}

.cart_totals table tr:last-child{

    border-bottom:none;

}

.cart_totals table th{

    width:40%;

    padding:16px 0!important;

    text-align:left;

    color:#666;

    font-size:15px;

    font-weight:500;

    background:none!important;

    border:none!important;

}

.cart_totals table td{

    padding:16px 0!important;

    text-align:right;

    color:#333;

    font-size:16px;

    font-weight:600;

    border:none!important;

    background:none!important;

}

/* ==========================================================
   TOTALE
========================================================== */

.cart_totals .order-total th{

    color:#782f88;

    font-size:18px;

    font-weight:700;

}

.cart_totals .order-total td{

    color:#782f88;

    font-size:28px;

    font-weight:700;

}

/* ==========================================================
   BOTTONE CHECKOUT
========================================================== */

.wc-proceed-to-checkout{

    margin-top:15px;

}

.wc-proceed-to-checkout .checkout-button{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    min-height:58px;

    border-radius:14px;

    background:#782f88!important;

    color:#fff!important;

    font-size:17px!important;

    font-weight:600;

    transition:.25s;

}

.wc-proceed-to-checkout .checkout-button:hover{

    background:#5e2568!important;

}

/* ==========================================================
   PAGAMENTI EXPRESS
========================================================== */

#wc-stripe-express-checkout-element{

    margin-top:20px!important;

    padding-top:20px;

    border-top:1px solid #f1e7ef;

}

#wc-stripe-express-checkout-element iframe{

    border-radius:12px;

}

/* ==========================================================
   CHECKOUT - IL CLUB DELLA LANA
   BLOCCO 1
   Layout - Card - Campi
========================================================== */

/* ==========================================================
   CONTAINER
========================================================== */

/* ==========================================================
   LAYOUT CHECKOUT
========================================================== */

.wp-block-woocommerce-checkout{

   /* display:grid !important;

    grid-template-columns:minmax(0,2fr) 420px !important;

    gap:40px;*/

    align-items:start;

}

.wp-block-woocommerce-checkout-fields-block{

    min-width:0;

}

.wp-block-woocommerce-checkout-totals-block{

    position:sticky;

    top:120px;

    align-self:start;

}



/* ==========================================================
   CARD
========================================================== */

.wc-block-components-checkout-step,
.wc-block-components-sidebar-layout .wc-block-components-totals-wrapper,
.wc-block-components-order-summary{

    /*background:#fff;

    border:1px solid #f0e4ee;

    border-radius:22px;

    padding:30px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);*/

    margin-bottom:28px;

}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image {
    margin-top: 8px;
    padding-bottom: 16px;
    position: relative;
    width: 150px !important;
}

/* ==========================================================
   TITOLI
========================================================== */

.wc-block-components-title,
.wc-block-components-checkout-step__heading h2,
.wc-block-components-checkout-step__title{

    color:#782f88;

    font-size:28px;

    font-weight:700;

    margin-bottom:22px;

}

.wc-block-components-checkout-step__description{

    color:#666;

    font-size:15px;

}

/* ==========================================================
   CAMPI
========================================================== */

.wc-block-components-text-input input,
.wc-block-components-text-input select,
.wc-block-components-combobox-control input,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-components-textarea textarea{

    height:54px;

    border:1px solid #ddd;

    border-radius:14px;

    background:#fff;

    padding:0 18px;

    transition:.25s;

    font-size:15px;

}

.wc-block-components-textarea textarea{

    min-height:120px;

    padding:15px 18px;

}

/* ==========================================================
   LABEL
========================================================== */

.wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-address-form label{

    color:#555;

    font-size:14px;

    font-weight:500;

}

/* ==========================================================
   FOCUS
========================================================== */

.wc-block-components-text-input input:focus,
.wc-block-components-text-input select:focus,
.wc-block-components-combobox-control input:focus,
.wc-block-components-address-form input:focus,
.wc-block-components-address-form select:focus,
.wc-block-components-textarea textarea:focus{

    border-color:#782f88;

    box-shadow:0 0 0 4px rgba(120,47,136,.12);

    outline:none;

}

/* ==========================================================
   PLACEHOLDER
========================================================== */

.wc-block-components-text-input input::placeholder,
.wc-block-components-textarea textarea::placeholder{

    color:#aaa;

}

/* ==========================================================
   LINK
========================================================== */

.wc-block-checkout a{

    color:#782f88;

    text-decoration:none;

    transition:.2s;

}

.wc-block-checkout a:hover{

    color:#5d2369;

}

/* ==========================================================
   CHECKBOX
========================================================== */

.wc-block-components-checkbox input{

    accent-color:#782f88;

}

/* ==========================================================
   SEPARATORI
========================================================== */

.wc-block-components-checkout-step__content{

    padding-top:10px;

}

/* ==========================================================
   CHECKOUT - IL CLUB DELLA LANA
   BLOCCO 2
   Sidebar - Totali - Spedizione - Pagamenti
========================================================== */

/* ==========================================================
   SIDEBAR STICKY
========================================================== */

@media (min-width:1025px){

    .wc-block-checkout__sidebar{

        position:sticky;

        top:120px;

        align-self:flex-start;

    }

}

/* ==========================================================
   RIEPILOGO ORDINE
========================================================== */

.wc-block-components-order-summary{

    border-radius:22px;

}

.wc-block-components-order-summary__title{

    color:#782f88;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.wc-block-components-order-summary-item{

    padding:18px 0;

    border-bottom:1px solid #f2e7ef;

}

.wc-block-components-order-summary-item:last-child{

    border-bottom:none;

}

.wc-block-components-order-summary-item__image img{

    width:72px;

    border-radius:14px;

    border:1px solid #eee;

}

.wc-block-components-order-summary-item__description{

    padding-left:18px;

}

.wc-block-components-order-summary-item__description strong{

    color:#333;

    font-size:16px;

    font-weight:600;

}

.wc-block-components-order-summary-item__total-price{

    color:#782f88;

    font-weight:700;

    font-size:17px;

}

/* ==========================================================
   BADGE QUANTITA'
========================================================== */

.wc-block-components-order-summary-item__image{

    position:relative;

    overflow:visible!important;

}

.wc-block-components-order-summary-item__quantity{

    position:absolute!important;

    top:-10px!important;

    right:-10px!important;

    width:30px!important;

    height:30px!important;

    border-radius:50%!important;

    background:#782F88!important;

    color:#fff!important;

    display:flex!important;

    align-items:center!important;

    justify-content:center!important;

    border:3px solid #fff!important;

    box-shadow:0 5px 15px rgba(0,0,0,.25)!important;

    z-index:999!important;

}

/* IL NUMERO */

.wc-block-components-order-summary-item__quantity span[aria-hidden="true"]{

    display:flex!important;

    align-items:center!important;

    justify-content:center!important;

    width:100%!important;

    height:100%!important;

    font-size:15px!important;

    font-weight:700!important;

    line-height:1!important;

    color:#fff!important;

    opacity:1!important;

    transform:none!important;

}

/* NASCONDE SOLO IL TESTO ACCESSIBILE */

.wc-block-components-order-summary-item__quantity .screen-reader-text{

    display:none!important;

}

/* ==========================================================
   TOTALI
========================================================== */

.wc-block-components-totals-wrapper{

    margin-top:25px;

}

.wc-block-components-totals-item{

    padding:16px !important;

    border-bottom:1px solid #f2e7ef;

}

.wp-block-woocommerce-checkout-order-summary-totals-block, div.wc-block-components-totals-item.wc-block-components-totals-footer-item {
    padding: 16px !important;
}

.wc-block-components-totals-item:last-child{

    border-bottom:none;

}

.wc-block-components-totals-item__label{

    color:#666;

    font-size:15px;

}

.wc-block-components-totals-item__value{

    color:#333;

    font-size:16px;

    font-weight:600;

}

/* ==========================================================
   TOTALE FINALE
========================================================== */

.wc-block-components-totals-footer-item{

    margin-top:18px;

    padding-top:18px;

    border-top:2px solid #ead7e7;

}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label{

    color:#782f88;

    font-size:18px;

    font-weight:700;

}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value{

    color:#782f88;

    font-size:28px;

    font-weight:700;

}

/* ==========================================================
   SPEDIZIONE
========================================================== */

.wc-block-components-shipping-rates-control{

    margin-top:15px;

}

.wc-block-components-radio-control__option{

    border:1px solid #ead7e7;

    border-radius:14px;

    margin-bottom:12px;

    padding:16px 18px;

    transition:.25s;

    /*background:#fff;*/

}

/*.wc-block-components-radio-control__option:hover{

    border-color:#782f88;

    background:#faf6fb;

}*/

/* ==========================================================
   RADIO
========================================================== */

.wc-block-components-radio-control__input{

    accent-color:#782f88;

}

/* ==========================================================
   PAGAMENTI
========================================================== */

.wc-block-components-payment-method{

    border:1px solid #ead7e7;

    border-radius:16px;

    margin-bottom:14px;

    overflow:hidden;

    transition:.25s;

}

.wc-block-components-payment-method:hover{

    border-color:#782f88;

}

.wc-block-components-payment-method.is-active{

    border-color:#782f88;

    box-shadow:0 0 0 3px rgba(120,47,136,.08);

}

.wc-block-components-payment-method__content{

    padding:20px;

}

/* ==========================================================
   EXPRESS PAYMENT
========================================================== */

.wc-block-components-express-payment{

    margin-bottom:30px;

}

.wc-block-components-express-payment__content{

    gap:12px;

}

/* ==========================================================
   CHECKOUT - IL CLUB DELLA LANA
   BLOCCO 3
   Pulsanti - Coupon - Messaggi - Responsive
========================================================== */

/* ==========================================================
   BOTTONE EFFETTUA ORDINE
========================================================== */

.wc-block-components-checkout-place-order-button,
.wc-block-components-button{

    width:100%;

    min-height:58px;

    border:none!important;

    border-radius:14px!important;

    background:#782f88!important;

    color:#fff!important;

    font-size:17px!important;

    font-weight:600!important;

    transition:.25s;

    box-shadow:0 10px 25px rgba(120,47,136,.18);

}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:hover{

    background:#5d2369!important;

    transform:translateY(-2px);

    box-shadow:0 16px 30px rgba(120,47,136,.25);

}

.wc-block-components-checkout-place-order-button:disabled{

    opacity:.6;

    cursor:not-allowed;

    transform:none;

    box-shadow:none;

}

/* ==========================================================
   COUPON
========================================================== */

.wc-block-components-totals-coupon{

    margin:25px 0;

}

.wc-block-components-totals-coupon input{

    height:50px;

    border-radius:12px;

    border:1px solid #ddd;

    padding:0 16px;

}

.wc-block-components-totals-coupon button{

    border-radius:12px!important;

}

/* ==========================================================
   AVVISI
========================================================== */

.wc-block-components-notice-banner{

    border-radius:16px;

    border:none;

    background:#f8eefb;

    color:#444;

    padding:18px 22px;

    margin-bottom:25px;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.wc-block-components-notice-banner.is-error{

    background:#fff2f2;

    color:#b42318;

}

.wc-block-components-notice-banner.is-success{

    background:#eefbf3;

    color:#067647;

}

/* ==========================================================
   LOADER
========================================================== */

.wc-block-components-totals-wrapper.is-loading{

    opacity:.55;

    transition:.25s;

}

/* ==========================================================
   BADGE QUANTITA'
========================================================== */

.wc-block-components-product-badge{

    background:#782f88;

    color:#fff;

    border-radius:50%;

}

/* ==========================================================
   MINIATURE PRODOTTI
========================================================== */

.wc-block-components-order-summary-item__image{

    border-radius:16px;

    overflow:hidden;

}

.wc-block-components-order-summary-item__image img{

    display:block;

}

/* ==========================================================
   LINK MODIFICA
========================================================== */

.wc-block-components-checkout-step__actions a{

    color:#782f88;

    font-weight:600;

    text-decoration:none;

}

.wc-block-components-checkout-step__actions a:hover{

    text-decoration:underline;

}

/* ==========================================================
   MICROANIMAZIONI
========================================================== */

.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wc-block-components-payment-method{

    transition:.25s;

}

.wc-block-components-payment-method:hover,
.wc-block-components-checkout-step:hover{

    box-shadow:0 16px 35px rgba(0,0,0,.06);

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:1024px){

    .wc-block-checkout{

        display:block;

        padding:0 15px;

    }

    .wc-block-checkout__main,
    .wc-block-checkout__sidebar{

        width:100%;

        padding:0;

    }

    .wc-block-checkout__sidebar{

        margin-top:30px;

        position:static;

    }

    .wc-block-components-checkout-step,
    .wc-block-components-order-summary,
    .wc-block-components-totals-wrapper{

        padding:22px;

        border-radius:18px;

    }

    .wc-block-components-title,
    .wc-block-components-checkout-step__heading h2{

        font-size:24px;

    }

    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value{

        font-size:24px;

    }

    .wc-block-components-checkout-place-order-button{

        min-height:54px;

        font-size:16px!important;

    }

}

/* ==========================================================
   PICCOLI SMARTPHONE
========================================================== */

@media(max-width:480px){

    .wc-block-components-order-summary-item__image img{

        width:60px;

    }

    .wc-block-components-order-summary-item__description{

        padding-left:12px;

    }

    .wc-block-components-title,
    .wc-block-components-checkout-step__heading h2{

        font-size:22px;

    }

    .wc-block-components-checkout-step,
    .wc-block-components-order-summary,
    .wc-block-components-totals-wrapper{

        padding:18px;

    }

}

/* ==========================================================
   SIDEBAR CHECKOUT PIÙ COMPATTA
========================================================== */

.wp-block-woocommerce-checkout-order-summary-block{

    font-size:14px;

}

/* Header */

.wc-block-components-checkout-order-summary__title{

    padding-bottom:12px;

    margin-bottom:15px;

}

.wc-block-components-checkout-order-summary__title-text{

    font-size:22px;

}

.wc-block-components-checkout-order-summary__title-price{

    font-size:20px;

    font-weight:700;

}

/* Elimina spazio fra i blocchi */

.wc-block-components-totals-wrapper{

    margin:0!important;

    padding:0!important;

}

/* Lista prodotti */

.wc-block-components-order-summary-item{

    padding:12px 0!important;

    min-height:auto;

}

.wc-block-components-order-summary-item__description{

    padding-left:14px;

}

.wc-block-components-product-name{

    margin-bottom:4px;

    font-size:15px;

    line-height:1.3;

}

.wc-block-components-product-metadata{

    margin-top:4px;

}

.wc-block-components-product-metadata p{

    margin:0;

    font-size:12px;

    line-height:1.35;

    color:#777;

}

/* Coupon */

.wc-block-components-totals-coupon{

    margin:15px 0!important;

}

.wc-block-components-panel__button{

    padding:12px 0;

}

/* Totali */

.wc-block-components-totals-item{

    padding:10px 0!important;

}

.wc-block-components-totals-footer-item{

    padding-top:14px!important;

    margin-top:10px!important;

}

/* Immagine */

.wc-block-components-order-summary-item__image img{

    width:56px!important;

    height:56px!important;

}

/* ==========================================================
   CALCOLATORE SPEDIZIONE
========================================================== */

.woocommerce-shipping-calculator{

    margin-top:20px;

    padding-top:20px;

    border-top:1px solid #ece4ea;

}

/* ==========================================================
   LINK APERTURA
========================================================== */

.shipping-calculator-button{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#782F88;

    font-weight:600;

    text-decoration:none;

    transition:.25s;

}

.shipping-calculator-button:hover{

    color:#5d2369;

}

.shipping-calculator-button::before{

    content:"📍";

    font-size:16px;

}

/* ==========================================================
   FORM
========================================================== */

.shipping-calculator-form{

    margin-top:20px;

    padding:25px;

    background:#faf8fb;

    border:1px solid #ece4ea;

    border-radius:18px;

}

/* ==========================================================
   CAMPI
========================================================== */

.shipping-calculator-form .form-row{

    margin-bottom:18px;

}

.shipping-calculator-form label{

    display:block;

    margin-bottom:8px;

    color:#555;

    font-size:14px;

    font-weight:600;

}

.shipping-calculator-form input.input-text{

    width:100%;

    height:50px;

    padding:0 16px;

    border:1px solid #ddd;

    border-radius:12px;

    background:#fff;

    transition:.25s;

}

.shipping-calculator-form input.input-text:focus{

    border-color:#782F88;

    box-shadow:0 0 0 4px rgba(120,47,136,.10);

    outline:none;

}

/* ==========================================================
   SELECT2
========================================================== */

.shipping-calculator-form .select2-container{

    width:100%!important;

}

.shipping-calculator-form .select2-selection--single{

    height:50px!important;

    border:1px solid #ddd!important;

    border-radius:12px!important;

    display:flex!important;

    align-items:center;

    padding:0 14px;

    transition:.25s;

}

.shipping-calculator-form .select2-selection--single:hover{

    border-color:#782F88!important;

}

.shipping-calculator-form .select2-selection__rendered{

    line-height:48px!important;

    padding-left:0!important;

    color:#444;

}

.shipping-calculator-form .select2-selection__arrow{

    height:48px!important;

}

/* ==========================================================
   PULSANTE
========================================================== */

.shipping-calculator-form .button{

    width:100%;

    height:52px;

    border:none!important;

    border-radius:12px!important;

    background:#782F88!important;

    color:#fff!important;

    font-size:15px!important;

    font-weight:600!important;

    transition:.25s;

}

.shipping-calculator-form .button:hover{

    background:#5d2369!important;

    transform:translateY(-1px);

}

/* ==========================================================
   CAMPI OBBLIGATORI
========================================================== */

.shipping-calculator-form .required{

    color:#d9534f;

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .shipping-calculator-form{

        padding:18px;

    }

}

/* ==========================================================
   RESPONSIVE COMPLETO
   TABLET
========================================================== */

@media (max-width:1024px){

    /* -------------------------
       CONTENITORE
    -------------------------- */

    .product-layout{
        flex-direction:column;
        gap:40px;
        padding:0 30px;
    }

    .product-characteristics{
        padding:40px;
    }

    .related-products-section,
    .ispirazioni-section,
    .product-schemi{
        padding-left:40px;
        padding-right:40px;
    }

    .product-schemi{
        margin:60px 0;
    }

    /* -------------------------
       HERO SHOP
    -------------------------- */

    .shop-hero__content{
        width:100% !important;
        padding:120px 30px;
    }

    .shop-category-description{
        margin-right:0;
        max-width: 90%;
    }

    .shop-hero__title{
        font-size:52px;
    }

    .fp-shop-wrapper{
        margin:40px;
    }

    /* -------------------------
       CLUB CONSIGLIO
    -------------------------- */

    .club-lana-consiglio{
        margin:50px 40px 0;
        padding:35px;
        min-height:auto;
    }

    .club-lana-content{
        width:100%;
    }

    .club-lana-logo{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:30px;
        text-align:center;
    }

    .club-lana-logo img{
        width:240px;
    }

    /* -------------------------
       TITOLI
    -------------------------- */

    .product-title{
        font-size:30px;
    }

    .related-title,
    .ispirazioni-title{
        font-size:30px;
    }

    .characteristics-title,
    .product-schemi-title{
        font-size:32px;
    }

    /* -------------------------
       CARD
    -------------------------- */

    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .related-image img{
        height:280px;
    }

    .related-title-product{
        font-size:18px;
        height:auto;
    }

    /* -------------------------
       BLOG
    -------------------------- */

    .cll-card-content{
        padding:22px;
    }

    .cll-card h3{
        font-size:20px !important;
    }

    /* -------------------------
       CARRELLO
    -------------------------- */

    .woocommerce-cart .page-content{
        padding:30px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:767px){

    /* -------------------------
       SPAZI GENERALI
    -------------------------- */

    .product-layout{
        padding:0 20px;
        gap:25px;
    }

    .product-characteristics{
        padding:25px 20px 35px;
        margin:35px 0;
    }

    .related-products-section,
    .ispirazioni-section,
    .product-schemi{
        padding-left:20px;
        padding-right:20px;
    }

    .related-products-section{
        margin:50px 0;
    }

    .ispirazioni-section{
        padding-top:50px;
        padding-bottom:50px;
    }

    /* -------------------------
       BREADCRUMB
    -------------------------- */

    .product-breadcrumbs{
        margin:15px 0 25px;
        font-size:12px;
    }

    /* -------------------------
       GALLERY
    -------------------------- */

    .thumbnail-gallery{
        justify-content:center;
        flex-wrap:wrap;
    }

    .thumbnail-gallery img{
        width:60px;
        height:60px;
    }

    /* -------------------------
       TITOLI
    -------------------------- */

    .seo-title{
        font-size:12px;
    }

    .product-title{
        font-size:26px;
        line-height:1.15;
    }

    .product-price{
        font-size:22px;
    }

    .short-desc,
    .composition,
    .char-row,
    .char-text{
        font-size:15px;
    }

    .characteristics-title,
    .product-schemi-title,
    .club-lana-title{
        font-size:28px;
    }

    .related-title,
    .ispirazioni-title{
        font-size:26px;
    }

    .shop-hero__title{
        font-size:40px;
    }

    .shop-category-description{
        font-size:16px;
    }

    /* -------------------------
       HERO SHOP
    -------------------------- */

    .shop-hero{
        background-position:center;
    }

    .shop-hero__content{
        width:90% !important;
        padding:40px 20px;
    }

    .fp-shop-wrapper{
        margin:20px;
    }

    /* -------------------------
       CLUB LANA
    -------------------------- */

    .club-lana-consiglio{
        margin:30px 20px;
        padding:25px;
    }

    .club-lana-logo img{
        width:170px;
    }

    .club-lana-text{
        font-size:15px;
        line-height:1.7;
    }

    /* -------------------------
       CARATTERISTICHE
    -------------------------- */

    .characteristics-grid{
        grid-template-columns:1fr;
        row-gap:12px;
    }

    .product-care-icons{
        gap:12px;
    }

    /* -------------------------
       VARIAZIONI
    -------------------------- */

    .single_variation_wrap .woocommerce-variation-add-to-cart{
        flex-direction:column;
        align-items:stretch;
    }

    .single_variation_wrap .quantity{
        width:100%;
    }

    .single_variation_wrap .quantity input{
        width:100%;
    }

    .single_add_to_cart_button{
        width:100%;
    }

    /* -------------------------
       RELAZIONATI
    -------------------------- */

    .related-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .related-image img{
        height:240px;
    }

    .related-content{
        padding:18px;
    }

    /* -------------------------
       ISPIRAZIONI
    -------------------------- */

    .isp-card.big,
    .isp-card.small{
        min-height:320px;
    }

    .isp-content{
        padding:18px;
    }

    .isp-content h4{
        font-size:20px;
        width:90%;
    }

    .isp-excerpt{
        width:90%;
    }

    /* -------------------------
       BLOG
    -------------------------- */

    .cll-blog-grid{
        gap:20px;
        margin:40px 0;
    }

    .cll-card-content{
        padding:20px;
    }

    .cll-card h3{
        font-size:18px !important;
    }

    .cll-card p{
        font-size:15px;
    }

    /* -------------------------
       SCHEMI
    -------------------------- */

    .product-schemi{
        margin:50px 0;
    }

    .cs-card-horizontal{
        flex-direction:column;
    }

    .cs-card-horizontal__image{
        width:100%;
        flex:auto;
    }

    .cs-card-horizontal__image img{
        width:100%;
        height:220px;
        object-fit:cover;
    }

    /* -------------------------
       CARRELLO
    -------------------------- */

    .woocommerce-cart .page-content{
        padding:20px 15px 50px;
    }

    .woocommerce-cart table.shop_table td{
        padding:14px 10px;
    }

    .cart_totals{
        padding:20px;
        border-radius:18px;
    }

    .cart_totals h2{
        font-size:24px;
    }

    .cart_totals .order-total td{
        font-size:22px;
    }

    /* -------------------------
       MEGA MENU
    -------------------------- */

    .mega-column h4{
        font-size:16px;
    }

    .mega-parent,
    .mega-column>a{
        font-size:16px;
    }

    .mega-child{
        font-size:14px;
    }

}

/* =========================
   SHOP HERO RESPONSIVE
========================= */

@media (max-width:1024px){

    .shop-hero{
        position:relative;
    }

    .shop-hero__overlay{
        position:absolute;
        inset:0;
        background:rgba(255,255,255,.45);
        z-index:1;
    }

    .shop-hero__content{
        position:relative;
        z-index:2;
    }

}

/* ==========================================================
   PRODOTTI IN EVIDENZA
   ========================================================== */

.cdl-featured-products {
    width: 100%;
    margin: 60px 0;
    position: relative;
}


/* ==========================================================
   HEADER
   ========================================================== */

.cdl-featured-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.cdl-featured-products-title h2 {
    margin: 0;
    font-family: "Dancing Script", cursive;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #782f88;
}


/* ==========================================================
   NAVIGAZIONE
   ========================================================== */

.cdl-featured-products-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cdl-featured-products-navigation button {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f4b3d1;
    color: #782f88;

    font-family: Poppins, sans-serif;
    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        opacity .25s ease,
        transform .25s ease;
}

.cdl-featured-products-navigation button:hover {
    background: #782f88;
    color: #fff;
    transform: translateY(-2px);
}

.cdl-featured-products-navigation button:disabled {
    opacity: .35;
    cursor: default;
    transform: none;
}


/* ==========================================================
   VIEWPORT
   ========================================================== */

.cdl-featured-products-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* ==========================================================
   LISTA CAROSELLO
   ========================================================== */

.cdl-featured-products-list {
    display: flex !important;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    gap: 20px;

    list-style: none;

    transform: translate3d(0, 0, 0);

    transition: transform .4s ease;

    box-sizing: border-box;
}


/*
 * Elimina i comportamenti della griglia
 * WooCommerce.
 */

.cdl-featured-products-list::before,
.cdl-featured-products-list::after {
    display: none !important;
    content: none !important;
}


/* ==========================================================
   CARD
   IDENTICA ALLA CARD DEL FILTRO
   ========================================================== */

.cdl-featured-products-list li.product {
    flex: 0 0 calc((100% - 60px) / 4);

    width: calc((100% - 60px) / 4);

    min-width: 0;

    margin: 0 !important;

    box-sizing: border-box;

    border: 1px solid #000;
    border-radius: 12px;

    padding: 30px 20px !important;

    background: #fff;

    list-style: none;

    clear: none !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/*
 * Evita gli offset WooCommerce
 * per primo e ultimo elemento.
 */

.cdl-featured-products-list li.product.first,
.cdl-featured-products-list li.product.last {
    margin: 0 !important;
    clear: none !important;
}


/* ==========================================================
   LINK
   ========================================================== */

.cdl-featured-products-list li.product > a {
    display: flex;
    flex-direction: column;

    text-decoration: none;
}


/* ==========================================================
   IMMAGINE
   ========================================================== */

.cdl-featured-products-list li.product img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;

    object-fit: contain;
}


/* ==========================================================
   TITOLO
   IDENTICO AL FILTRO
   ========================================================== */

.cdl-featured-products-list
.woocommerce-loop-product__title {

    margin: 15px 0 0 !important;

    font-family: Poppins, sans-serif;

    font-size: 16px !important;

    font-weight: 700;

    line-height: 1.2;

    color: #000;

    text-align: center;

    text-transform: none;

}


/* ==========================================================
   PREZZO
   IDENTICO AL FILTRO
   ========================================================== */

.cdl-featured-products-list li.product .price {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    margin-top: 10px;

    color: #000;

    font-family: Montserrat, sans-serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;

    text-align: center;

}


/* ==========================================================
   PREZZO SCONTATO
   ========================================================== */

.cdl-featured-products-list li.product .price del {
    opacity: .6;
}

.cdl-featured-products-list li.product .price ins {
    text-decoration: none;
}


/* ==========================================================
   PULSANTI
   ========================================================== */

.cdl-featured-products-list
li.product a.button {

    display: block;

    width: fit-content;

    margin: 10px auto 0;

    box-sizing: border-box;

    text-align: center;

    text-decoration: none;

}


/*
 * Pulsante prodotti variabili
 * come nel filtro.
 */

.cdl-featured-products-list
a.button.product_type_variable.add_to_cart_button {

    color: #fff;

    background: #3FB8AF;

    padding: 12px 35px;

    font-family: Poppins, sans-serif;

}


/*
 * Pulsante prodotti semplici.
 *
 * Manteniamo lo stile del Club della Lana
 * già utilizzato nel catalogo.
 */

.cdl-featured-products-list
a.button.product_type_simple.add_to_cart_button {

    background-color: #f4b3d1;

    color: #782f88;

    border-radius: 12px;

    padding: 15px 25px;

    font-family: Poppins, sans-serif;

    font-size: 15px;

    font-weight: 500;

    text-transform: uppercase;

    transition:
        background-color .25s ease,
        color .25s ease;
}

.cdl-featured-products-list
a.button.product_type_simple.add_to_cart_button:hover {

    background-color: #782f88;

    color: #fff;

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .cdl-featured-products-list {
        gap: 20px;
    }

    .cdl-featured-products-list li.product {

        flex: 0 0 calc((100% - 20px) / 2);

        width: calc((100% - 20px) / 2);

        padding: 22px !important;

    }

    .cdl-featured-products-list
    .woocommerce-loop-product__title {

        font-size: 18px !important;

    }

    .cdl-featured-products-list
    li.product .price {

        font-size: 17px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .cdl-featured-products {

        margin: 40px 0;

    }


    .cdl-featured-products-header {

        margin-bottom: 20px;

    }


    .cdl-featured-products-title h2 {

        font-size: 32px;

    }


    .cdl-featured-products-navigation {

        gap: 7px;

    }


    .cdl-featured-products-navigation button {

        width: 40px;
        height: 40px;

        font-size: 18px;

    }


    .cdl-featured-products-list {

        gap: 18px;

    }


    .cdl-featured-products-list li.product {

        flex: 0 0 100%;

        width: 100%;

        padding: 18px !important;

    }


    .cdl-featured-products-list
    .woocommerce-loop-product__title {

        font-size: 17px !important;

        line-height: 1.3;

    }


    .cdl-featured-products-list
    li.product .price {

        font-size: 18px;

    }


    .cdl-featured-products-list
    li.product a.button {

        width: 100%;

        padding: 14px 18px;

        text-align: center;

    }

}


/* ==========================================================
   EXTRA SMALL
   ========================================================== */

@media (max-width: 480px) {

    .cdl-featured-products-title h2 {

        font-size: 28px;

    }


    .cdl-featured-products-list li.product {

        padding: 15px !important;

    }


    .cdl-featured-products-list
    .woocommerce-loop-product__title {

        font-size: 16px !important;

    }


    .cdl-featured-products-list
    li.product .price {

        font-size: 17px;

    }

}
a.related-image {
  height: 350px;
}

/* ==========================================================
   IDEA REGALO
   ========================================================== */

.cdl-gift-products {
    width: 100%;
    margin: 60px 0;
    position: relative;
}


/* ==========================================================
   GALLERIA
   ========================================================== */

.cdl-gift-products-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


/* ==========================================================
   ELIMINA COMPORTAMENTI WOOCOMMERCE
   ========================================================== */

.cdl-gift-products-grid::before,
.cdl-gift-products-grid::after {

    display: none !important;
    content: none !important;

}


/* ==========================================================
   CARD
   IDENTICA A PRODOTTI IN EVIDENZA
   ========================================================== */

.cdl-gift-products-grid li.product {

    width: auto !important;

    min-width: 0;

    margin: 0 !important;

    box-sizing: border-box;

    border: 1px solid #000;

    border-radius: 12px;

    padding: 30px 20px !important;

    background: #fff;

    list-style: none;

    float: none !important;

    clear: none !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


/* ==========================================================
   PRIMO / ULTIMO PRODOTTO
   ========================================================== */

.cdl-gift-products-grid li.product.first,
.cdl-gift-products-grid li.product.last {

    margin: 0 !important;

    clear: none !important;

}


/* ==========================================================
   LINK
   ========================================================== */

.cdl-gift-products-grid li.product > a {

    display: flex;

    flex-direction: column;

    text-decoration: none;

}


/* ==========================================================
   IMMAGINE
   ========================================================== */

.cdl-gift-products-grid li.product img {

    display: block;

    width: 100%;

    height: auto;

    margin: 0;

    object-fit: contain;

}


/* ==========================================================
   TITOLO
   IDENTICO A PRODOTTI IN EVIDENZA
   ========================================================== */

.cdl-gift-products-grid
.woocommerce-loop-product__title {

    margin: 15px 0 0 !important;

    font-family: Poppins, sans-serif;

    font-size: 16px !important;

    font-weight: 700;

    line-height: 1.2;

    color: #000;

    text-align: center;

    text-transform: none;

}


/* ==========================================================
   PREZZO
   IDENTICO A PRODOTTI IN EVIDENZA
   ========================================================== */

.cdl-gift-products-grid li.product .price {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    margin-top: 10px;

    color: #000;

    font-family: Montserrat, sans-serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;

    text-align: center;

}


/* ==========================================================
   PREZZO SCONTATO
   ========================================================== */

.cdl-gift-products-grid li.product .price del {

    opacity: .6;

}

.cdl-gift-products-grid li.product .price ins {

    text-decoration: none;

}


/* ==========================================================
   PULSANTI
   ========================================================== */

.cdl-gift-products-grid
li.product a.button {

    display: block;

    width: fit-content;

    margin: 10px auto 0;

    box-sizing: border-box;

    text-align: center;

    text-decoration: none;

}


/* ==========================================================
   PRODOTTI VARIABILI
   ========================================================== */

.cdl-gift-products-grid
a.button.product_type_variable.add_to_cart_button {

    color: #fff;

    background: #3FB8AF;

    padding: 12px 35px;

    font-family: Poppins, sans-serif;

}


/* ==========================================================
   PRODOTTI SEMPLICI
   ========================================================== */

.cdl-gift-products-grid
a.button.product_type_simple.add_to_cart_button {

    background-color: #f4b3d1;

    color: #782f88;

    border-radius: 12px;

    padding: 15px 25px;

    font-family: Poppins, sans-serif;

    font-size: 15px;

    font-weight: 500;

    text-transform: uppercase;

    transition:
        background-color .25s ease,
        color .25s ease;

}


.cdl-gift-products-grid
a.button.product_type_simple.add_to_cart_button:hover {

    background-color: #782f88;

    color: #fff;

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .cdl-gift-products-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;

    }

    .cdl-gift-products-grid li.product {

        padding: 22px !important;

    }

    .cdl-gift-products-grid
    .woocommerce-loop-product__title {

        font-size: 18px !important;

    }

    .cdl-gift-products-grid
    li.product .price {

        font-size: 17px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .cdl-gift-products {

        margin: 40px 0;

    }

    .cdl-gift-products-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .cdl-gift-products-grid li.product {

        padding: 18px !important;

    }

    .cdl-gift-products-grid
    .woocommerce-loop-product__title {

        font-size: 17px !important;

        line-height: 1.3;

    }

    .cdl-gift-products-grid
    li.product .price {

        font-size: 18px;

    }

    .cdl-gift-products-grid
    li.product a.button {

        width: 100%;

        padding: 14px 18px;

        text-align: center;

    }

}


/* ==========================================================
   EXTRA SMALL
   ========================================================== */

@media (max-width: 480px) {

    .cdl-gift-products-grid li.product {

        padding: 15px !important;

    }

    .cdl-gift-products-grid
    .woocommerce-loop-product__title {

        font-size: 16px !important;

    }

    .cdl-gift-products-grid
    li.product .price {

        font-size: 17px;

    }

}