body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    color: #28a745 !important;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/1600x900/?herbs,nature') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

.btn-brand {
    background-color: #28a745;
    color: white;
    border: none;
}

.btn-brand:hover {
    background-color: #218838;
    color: white;
}

.footer-profile-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #fff;
}