/**
 * css/custom/cart-icon.css
 * Stili 
 */

.gp-cart-icon-wrapper {
    display         : flex;
    align-items     : center;
}

.gp-cart-icon-link {
    display         : inline-flex;
    align-items     : center;
    gap             : 10px;

    text-decoration : none;
    color           : #111;
}


.gp-cart-icon-box {
    position        : relative;
    width           : 38px;
    height          : 38px;
    display         : flex;
    align-items     : center;
    justify-content : center;
    overflow        : visible;
}

.gp-cart-main-icon {
    display     : inline-flex;
    align-items : center;
    font-size   : 30px;
    line-height : 1;
    color       : #111;
}

.gp-cart-main-icon::before {
    font-size   : 30px;
    line-height : 1;
}



.gp-cart-count {
    position        : absolute;

    top             : -4px;
    right           : -6px;

    min-width       : 18px;
    height          : 18px;

    padding         : 0 4px;

    display         : flex;
    align-items     : center;
    justify-content : center;

    border-radius   : 999px;

    background      : var(--odoo-brand-delfino-light);  
    color           : #fff;

    font-size       : 11px;
    font-weight     : 600;
    line-height     : 1;
}

.gp-cart-info {
    display     : grid;
    gap         : 2px;
    line-height : 1.1;
}

.gp-cart-label {
    color       : #666;

    font-family : "Afacad", sans-serif;
    font-size   : 14px;
    font-weight : 300;
}

.gp-cart-total {
    color: #111;

    font-family : "Afacad", sans-serif;
    font-size   : 16px;
    font-weight : 600;
}

.gp-cart-icon-link:hover .gp-cart-total,
.gp-cart-icon-link:hover .gp-cart-main-icon {
    color: #000;
}

@media (max-width: 575px) {
    .gp-cart-info {
        display: none;
    }


}

