@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.product-card {
    transition: transform 0.2s ease, shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.btn-quick-shop {
    border: 1px solid #8b8b4b;
    color: #8b8b4b;
    transition: all 0.2s;
}

.btn-quick-shop:hover {
    background-color: #8b8b4b;
    color: white;
}

.discount-badge {
    background-color: #ff5722;
}

/* Modal specific colors */
.bg-olive {
    background-color: #8b8b4b;
}

.text-olive {
    color: #8b8b4b;
}

.border-olive {
    border-color: #8b8b4b;
}

.modal-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

/* Notification Animation */
.notification-enter {
    animation: slideIn 0.3s ease-out forwards;
}

.notification-exit {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Heart animation */
.heart-active {
    color: #ef4444 !important;
    fill: #ef4444 !important;
    border-color: #fecaca !important;
}

/* Mobile Drawer Scrollbar */
.mobile-drawer::-webkit-scrollbar {
    width: 4px;
}

.mobile-drawer::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}