/* Стили для иконки корзины */
.custom-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 20px;
    color: #333;
    transition: all 0.3s ease;
    padding: 8px;
}

.custom-cart-icon:hover {
    color: #ff5722;
    transform: scale(1.05);
}

/* Стили для счетчика товаров */
.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.cart-count.active {
    opacity: 1;
    transform: scale(1);
}

.cart-count.pulse {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .custom-cart-icon {
        margin-left: 15px;
        margin-right: 10px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}
