/* Modern Presentation Custom Styles */

:root {
    --primary-color: #1976d2;
    --secondary-color: #424242;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
}

/* Product Card Styles */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 3em;
}

.sale-badge {
    position: absolute !important;
    top: 10px;
    right: 10px;
    z-index: 1;
}

/* Category Card Styles */
.category-card {
    transition: transform 0.2s ease-in-out;
}

.category-card:hover {
    transform: scale(1.05);
}

/* Brand Logo Styles */
.brand-logo {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
    max-width: 120px;
    margin: 0 auto;
}

.brand-logo:hover {
    filter: grayscale(0%);
}

/* Shopping Cart Drawer */
.cart-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Responsive Utilities */
@media (max-width: 960px) {
    .mud-container {
        padding: 12px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
