﻿/* Section */
.product-section {
    padding: 80px 0;
    background: #f7faf9;
    font-family: 'Segoe UI', sans-serif;
}

.product-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 36px;
        color: #1c3c2e;
        font-weight: 700;
    }

    .section-header p {
        color: #6c757d;
        font-size: 16px;
    }

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.35s;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    }

/* Image */
.product-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Content */
.product-content {
    padding: 28px;
}

    .product-content h3 {
        color: #1c3c2e;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .product-content p {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

/* Button */
.product-btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg,#1c7c54,#2bb673);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .product-btn:hover {
        background: linear-gradient(135deg,#155d40,#229764);
        transform: scale(1.05);
    }
