.cart-btn-modern:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 150, 64, 0.4);
    gap: 16px;
}

.cart-btn-modern:hover::before {
    left: 100%;
}

.cart-btn-modern:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.cart-btn-modern i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cart-btn-modern:hover i {
    transform: rotate(90deg);
}

/* Анимация при нажатии */
@keyframes cartBtnPulse {
    0% { box-shadow: 0 6px 20px rgba(0, 150, 64, 0.25); }
    50% { box-shadow: 0 6px 30px rgba(0, 150, 64, 0.6); }
    100% { box-shadow: 0 6px 20px rgba(0, 150, 64, 0.25); }
}

.cart-btn-modern.added {
    animation: cartBtnPulse 0.5s ease;
    background: #5D9C59 !important;
}

/* Состояние "Добавлено" */
.cart-btn-modern.added i {
    transform: rotate(0deg) !important;
}

/* Вариант для мобильных */
@media (max-width: 768px) {
    .cart-btn-modern {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 140px;
        border-radius: 14px;
    }
}

.modern-dish-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.modern-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.modern-new-price {
    color: #ff5722;
    font-weight: 700;
    font-size: 24px;
}

.modern-discount-badge {
    background: linear-gradient(135deg, #ff5722, #ff8a50);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 87, 34, 0.2);
}
