/* SHOP */

.shop-categories{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.shop-category{
    padding:12px 25px;
    border:1px solid rgba(255,255,255,.3);
    text-transform:uppercase;
    letter-spacing:2px;
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.shop-product{
    background:#fff;
    color:#181818;
    overflow:hidden;
}

.shop-product-image{
    aspect-ratio:1/1;
    overflow:hidden;
}

.shop-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-product-content{
    padding:25px;
}

.shop-product-title{
    font-size:22px;
    margin-bottom:10px;
    color:#181818;
}

.shop-product-description{
    margin-bottom:20px;
    color:#666;
}

.shop-product-price{
    font-size:24px;
    font-weight:600;
    margin-bottom:20px;
    color:#181818;
}

.shop-product .button{
    width:100%;
}