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

.banner-slide {
    transition: opacity 1s ease-in-out;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.product-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(125, 211, 252, 0.2);
}

.category-btn {
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: scale(1.05);
    background-color: #7DD3FC;
    color: #0F172A;
}

.out-of-stock {
    position: relative;
}

.out-of-stock::after {
    content: "Out of Stock";
    position: absolute;
    top: 10px;
    right: -10px;
    background-color: #EF4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}