/* Custom styles for the ecommerce site */

/* Hero section */
.hero {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

/* Card hover effect */
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
}

/* Product badges */
.badge {
    font-size: 0.8rem;
}

/* Footer */
footer {
    font-size: 0.9rem;
}

/* Admin dashboard */
.main-content {
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero .row {
        text-align: center;
    }
    .hero .col-md-6:last-child {
        margin-top: 2rem;
    }
}