.oasis-header{

    text-align:center;

    padding:70px 0;

}

.oasis-header h1{

    font-size:48px;

}

.oasis-products{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


.oasis-shop{
    max-width:1400px;
    margin:auto;
    padding:40px 20px;
}

.oasis-shop-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    gap:20px;
    flex-wrap:wrap;
}

.oasis-shop-top h1{
    margin:0;
    font-size:40px;
}

.oasis-shop-info p{
    margin-top:8px;
    color:#666;
}

.oasis-shop-sort select{
    padding:12px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    background:white;
}

.oasis-products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.oasis-product{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.25s;
    border:1px solid #eee;
}

.oasis-product:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.oasis-image{
    aspect-ratio:1/1;
    background:#fafafa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.oasis-image img{
    transition:.35s;
}

.oasis-product:hover img{
    transform:scale(1.08);
}

.oasis-content{
    padding:20px;
}

.oasis-content h3{
    font-size:18px;
    margin-bottom:12px;
    min-height:52px;
}

.oasis-price{
    font-size:24px;
    font-weight:bold;
    margin-bottom:18px;
}

.oasis-button{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:14px;
    border-radius:10px;
    background:#0F5CA8;
    color:#fff;
    transition:.25s;
}

.oasis-product:hover .oasis-button{
    background:#0B4A87;
}

@media(max-width:1100px){

.oasis-products{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.oasis-products{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.oasis-products{
grid-template-columns:1fr;
}

}