/* =========================
   HERO
========================= */

.hero{
    background:#f7f7f7;
    padding:45px 24px;
    border-bottom:1px solid #ddd;
}

.mainOptions{
    width:100%;
    max-width:1200px;
    margin:auto;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.mainOptions div{
    padding:12px 22px;
    background:#fff;
    border:1px solid #d8d8d8;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    color:#333;
    cursor:pointer;
    transition:.25s;
    user-select:none;
    text-align:center;
}

.mainOptions div:hover{
    background:#0d5c63;
    border-color:#0d5c63;
    color:#fff;
}


/* =========================
   PRODUCTS
========================= */

.products{
    width:100%;
    max-width:1200px;
    margin:60px auto;

    padding:0 24px;

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.product{
    background:#fff;
    border:1px solid #dcdcdc;
    border-radius:12px;
    overflow:hidden;
    transition:.25s;
}

.product:hover{
    transform:translateY(-5px);
    border-color:#0d5c63;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.product-info{
    padding:20px;
}

.product h3{
    font-size:22px;
    margin-bottom:6px;
}

.product h4{
    font-size:15px;
    color:#666;
    margin-bottom:16px;
}

.product p{
    font-size:20px;
    font-weight:700;
    color:#0d5c63;
    margin-bottom:18px;
}

.product button{
    width:100%;
    padding:14px;
    border:none;
    background:#0d5c63;
    color:#fff;
    cursor:pointer;
    font-size:15px;
    transition:.25s;
}

.product button:hover{
    opacity:.9;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:992px){

    .products{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .hero{
        padding:35px 20px;
    }

    .products{
        padding:0 20px;
        grid-template-columns:1fr;
    }

    .mainOptions div{
        flex:1 1 calc(50% - 12px);
    }

    .product{
        max-width:500px;
        margin:auto;
    }

}

@media (max-width:480px){

    .hero{
        padding:30px 16px;
    }

    .products{
        padding:0 16px;
    }

    .mainOptions div{
        flex:1 1 100%;
    }

    .product img{
        height:220px;
    }

}