/* ==========================
   PRODUCTS PAGE
========================== */

.products-page{
    max-width:1200px;
    margin:140px auto 100px;
    padding:0 24px;
}

.products-page h1{
    font-size:56px;
    margin-bottom:20px;
    letter-spacing:.08em;
}

.products-intro{
    font-size:18px;
    margin-bottom:10px;
}





/* ==========================
   Accordion
========================== */

.product-category{
    border-bottom:1px solid #333;
    margin-bottom:30px;
}

.product-category-header{
    width:100%;
    padding:20px;
    background:#000;
    color:#fff;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:22px;
    letter-spacing:.08em;
    .product-category-header span:first-child{
    flex:1;
    display:block;
    text-align:left;
}

.accordion-icon{
    flex-shrink:0;
    margin-left:20px;
}
}

.product-category-content{
    display:none;
    padding:40px 0;
}

.product-category.active .product-category-content{
    display:block;
}

/* ==========================
   Product Grid
========================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:40px;
}

.product-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    margin-bottom:20px;
}

.product-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.product-price{
    margin:0;
    color:#888;
    font-size:15px;
}

.product-link{
    display:flex;
    flex-direction:column;
    height:100%;
    color:#fff;
    text-decoration:none;
}

.product-link img{
    transition:.25s;
}

.product-link:hover img{
    transform:scale(1.03);
}

.product-link h3{
    margin-top:12px;
    margin-bottom:8px;
    font-size:20px;
    line-height:1.4;
    min-height:56px;
    transition:.25s;
}

.product-link:hover h3{
    opacity:.7;
}

/* ==========================
   Footer
========================== */



/* ==========================
   Mobile
========================== */

@media(max-width:768px){

.products-page{
    margin-top:110px;
}

.products-page h1{
    font-size:40px;
}

.product-category-header{
    font-size:18px;
}

.product-grid{
    grid-template-columns:1fr;
}

.product-card{
    display:flex;
    flex-direction:column;
}

}