﻿.products-section {
    text-align: center;
    padding: 80px 20px;
    background: #f5f7fa;
}

.products-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.products-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
}

    .product-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover img {
        transform: scale(1.08);
    }

.card-content {
    padding: 25px;
}

    .card-content h3 {
        font-size: 24px;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .card-content p {
        font-size: 16px;
        color: #555;
    }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Button */
.product-btn-wrapper {
    margin-top: 50px;
}

.product-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

    .product-btn:hover {
        background: linear-gradient(135deg, #96c93d, #00b09b);
        transform: scale(1.05);
    }
