/* Additional custom styles */
.hero-section {
    background-size: cover;
    background-position: center;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.contact-info i {
    width: 25px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .product-card {
        margin-bottom: 15px;
    }
}

/* Animation for notifications */
.alert {
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #D2691E;
    }
