﻿.product-section {
    padding: 100px 0;
    background: #f4fdf7;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #14532d;
    }

    .section-header p {
        color: #555;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
}

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: center;
}

    .product-info h3 {
        color: #166534;
        margin-bottom: 10px;
    }

    .product-info p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 15px;
    }

.product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #16a34a;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .product-btn:hover {
        background: #14532d;
    }

/* Responsive */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
