/* Style dla ikony koszyka w nagłówku */

.wd-header-cart {
    position: relative;
    margin-left: 15px;
}

.cart-widget-opener {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon i {
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background-color: #BD9E5E; /* Złoty kolor z Twojego stylu */
    border-radius: 50%;
}

.cart-totals {
    margin-left: 8px;
    font-weight: 600;
}

/* Responsywność */
@media (max-width: 768px) {
    .cart-totals {
        display: none;
    }
}

/* Animacja */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.cart-widget-opener:hover .cart-icon i {
    animation: bounce 0.5s ease;
}