body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; }
.navbar-brand { font-weight: bold; }
.carousel-item img { height: 400px; object-fit: cover; }
.category-card { transition: transform 0.2s; }
.category-card:hover { transform: scale(1.05); }
.product-card, .review-card { box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
footer { background-color: #333; color: white; }
footer a { color: white; }

body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; }
.navbar-brand { font-weight: bold; }
.product-card { box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: transform 0.2s; }
.product-card:hover { transform: scale(1.02); }
footer { background-color: #333; color: white; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.form-select, .form-control { border-radius: 5px; }
.btn-primary { background-color: #007bff; border: none; }
.btn-primary:hover { background-color: #0056b3; }

body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; }
.navbar-brand { font-weight: bold; }
.product-card, .review-card { box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: transform 0.2s; }
.product-card:hover { transform: scale(1.02); }
footer { background-color: #333; color: white; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.form-select, .form-control { border-radius: 5px; }
.btn-primary { background-color: #007bff; border: none; }
.btn-primary:hover { background-color: #0056b3; }
.img-fluid { max-height: 400px; object-fit: cover; }
.alert { animation: fadeOut 5s forwards; }
@keyframes fadeOut { 0% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; display: none; } }