﻿/* Product Grid Styles */
.product-grid-section {
    padding: 80px 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 36px;
        color: #0a7c4d;
        font-weight: 800;
        margin-bottom: 15px;
        font-family: 'Montserrat', sans-serif;
    }

    .section-header p {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-color: #0a7c4d;
    }

/* Product Image */
.product-image {
    height: 200px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 25px;
}

.product-title {
    font-size: 22px;
    color: #0a7c4d;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Product List */
.product-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

    .product-list li {
        padding: 8px 0;
        color: #555;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 20px;
    }

        .product-list li:last-child {
            border-bottom: none;
        }

        .product-list li:before {
            content: "✓";
            color: #0a7c4d;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

/* View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #0a7c4d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #0a7c4d;
}

    .view-more-btn:hover {
        background: #0c9a5f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(10, 124, 77, 0.3);
    }

    .view-more-btn i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .view-more-btn:hover i {
        transform: translateX(5px);
    }

/* Responsive Design */

/* Tablet */
@media (max-width: 992px) {
    .product-grid-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-list li {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .product-grid-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

        .section-header h2 {
            font-size: 28px;
        }

        .section-header p {
            font-size: 15px;
            padding: 0 20px;
        }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 30px;
    }

    .product-image {
        height: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .product-grid-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .product-content {
        padding: 15px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-list li {
        font-size: 13px;
        padding: 6px 0;
        padding-left: 18px;
    }

    .view-more-btn {
        padding: 10px;
        font-size: 14px;
    }
}
