/* Дополнительные стили для корзины */
.cart__total {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding: 1.875rem 0;
    text-align: right;
    margin-top: 1.875rem;
}

.cart__total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.cart__empty {
    text-align: center;
    padding: 3rem 0;
}

.cart__empty h2 {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.5rem;
}

.cart__empty p {
    color: #999;
    font-size: 1rem;
}

.cart__empty a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.cart__empty a:hover {
    text-decoration: underline;
}

/* Улучшенные стили для элементов корзины */
.item-cart__delete {
    cursor: pointer;
    transition: color 0.3s ease;
}

.item-cart__delete:hover {
    color: #dc3545;
}

.quantity__input input {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem;
    width: 60px;
}

.quantity__button {
    cursor: pointer;
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 0.25rem 0.5rem;
    transition: background-color 0.3s ease;
}

.quantity__button:hover {
    background: #e9ecef;
}

.cart__item[data-removing] {
    opacity: 0.5;
    pointer-events: none;
}

/* Стили для избранного */
.item-product__favorite._icon-favorite-active {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.item-product__favorite:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.content-product__favorite._icon-favorite-active {
    color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.1) !important;
}

.content-product__favorite:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.notification {
    font-family: inherit;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist__empty {
    text-align: center;
    padding: 3rem 0;
}

.wishlist__empty h2 {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.5rem;
}

.wishlist__empty p {
    color: #999;
    font-size: 1rem;
}

.wishlist__empty a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.wishlist__empty a:hover {
    text-decoration: underline;
}

.wishlist__pagination {
    margin-top: 2rem;
    text-align: center;
}
