.products-section {
    padding: 60px 20px;
    background-color: #f4fdf4;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #2d5a27;
    font-size: 2rem;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}


.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eef2ee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    height: 150px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-info {
    padding: 20px;
}

.category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #8bc34a;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-info h3 {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    height: 60px; 
    overflow: hidden;
}


.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.price {
    font-weight: bold;
    color: #2d5a27;
    font-size: 1.2rem;
}

.buy-btn {
    text-decoration: none;
    background: #2d5a27;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition:0.3s;
}

.buy-btn:hover {
    background: #4caf50;
}

.product-card.highlight {
    border: 2px solid #8bc34a;
}