﻿/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #2e7d32;
}

/* Flexible Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    /* Image container fixed height */
    .product-card img {
        width: 100%;
        max-height: 400px; /* Fixed image area */
        object-fit: contain; /* Full image always visible */
        background: #f8f8f8; /* Neutral background for aspect ratio gaps */
        border-radius: 12px;
        padding: 8px;
        border: 2px solid #e0e0e0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        margin-bottom: 15px; /* Space below image */
        transition: transform 0.4s ease;
    }

    /* Title & description */
    .product-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1b5e20;
    }

    .product-card p {
        font-size: 15px;
        color: #555;
        margin-bottom: 15px;
    }

/* View More Button */
.btn-view {
    display: inline-block;
    padding: 10px 20px;
    background: #1b5e20;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .btn-view:hover {
        background: #43a047;
        transform: scale(1.05);
    }

/* Hover Effects */
.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

    .product-card:hover img {
        transform: scale(1.05);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .product-card p {
        font-size: 14px;
    }

    .product-card img {
        max-height: 280px; /* Smaller images for mobile */
    }
}
