:root {
    --bs-success: #157347;
}
/* Hero Section Styles */
.hero-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(21, 115, 71, 0.05);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(21, 115, 71, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icons {
    transition: transform 0.3s ease;
}

.hero-icons:hover {
    transform: rotate(10deg);
}

@media (max-width: 992px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-icons {
        margin-top: 3rem;
    }
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    transition: transform 0.3s ease;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-card:hover img {
    transform: scale(1.05);
}
h2 {
color:  #157347;
margin-bottom: 1rem;
}
.btn-eco {
    background-color: #198754;;
    color: white;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-eco:hover {
    background-color:  #157347;
    color:  white;
}
.rating-stars {
    color: #ffc107;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #198754;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.back-to-top:hover {
    transform: translateY(-3px);
    background: #157347;
}