
.header-cart{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    bottom:30px;
    z-index: 999;
    right: 20px;
    text-align: center;
    background: #ff6600;
}

 ion-icon{
    font-size:30px;
    color: white;
    margin-top:20px;
    margin-left: -10px;
}


.cart-count{
    margin-left: -5px;
    color:white;
    position: absolute;
    margin-top:10px;
    font-size:25px;
}
.cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-modal-content {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    animation: cartFadeUp 0.35s ease;
}
@keyframes cartFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cart-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
#emptyCart {
    text-align: center;
    padding: 40px 20px;
}

#emptyCart h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

#emptyCart p {
    color: #777;
}
.mini-cart-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-cart-wrapper li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce-mini-cart-item a {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.woocommerce-mini-cart-item .quantity {
    font-size: 14px;
    color: #666;
}
.woocommerce-mini-cart-item .remove {
    margin-left: auto;
    font-size: 18px;
    color: #ff3b3b;
    text-decoration: none;
    font-weight: bold;
}
.woocommerce-mini-cart__total {
    margin-top: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.woocommerce-mini-cart__buttons a {
    display: block;
    text-align: center;
    background: #ff6600;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-top: 12px;
    text-decoration: none;
    font-weight: 600;
}
