/* =========================================
   PRODUCTS PAGE
========================================= */

.products-page {
    background: #fffdf8;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 35px;

    margin-top: 50px;
}

.product-card {
    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    text-align: center;

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

    transition: .35s;
}

.product-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.15);
}

.product-card img {
    width: 100%;

    height: 260px;

    object-fit: contain;

    background: #fafafa;

    padding: 25px;
}

.product-card h3 {
    color: #D50000;

    margin: 25px 0 15px;

    font-size: 28px;
}

.product-card p {
    color: #666;

    line-height: 1.8;

    padding: 0 30px;

    min-height: 90px;
}

.product-btn {
    display: inline-block;

    margin: 30px 0;

    background: #D50000;

    color: white;

    padding: 14px 32px;

    border-radius: 40px;

    font-weight: 600;

    transition: .3s;
}

.product-btn:hover {
    background: #FFC107;
    color: #111;
}


/* =========================================
   WHY PRODUCTS
========================================= */

.why-company {
    width: 100%;
    background: #fffdf8;
}

.why-company h2 {
    text-align: center;
    color: #D50000;
    font-size: 50px;
    margin-bottom: 50px;
}

.features {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}

.features > div {
    text-align: center;
    padding: 30px 20px;
}

.features i {
    font-size: 45px;
    color: #D50000;
    margin-bottom: 20px;
}

.features h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.features p {
    color: #666;
    line-height: 1.7;
    font-size: 17px;
    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .features {
        grid-template-columns: 1fr;
    }

}