/*=========================================
SHOP HERO
=========================================*/

.shop-hero{

padding:140px 0 70px;

background:#FAF8F5;

text-align:center;

}

.shop-hero h1{

font-family:'Cormorant Garamond',serif;

font-size:64px;

margin:20px 0;

color:#222;

}

.shop-hero p{

max-width:650px;

margin:auto;

font-size:18px;

line-height:1.8;

color:#666;

}

/*=========================================
SHOP
=========================================*/

.shop{

padding:70px 0 100px;

background:#fff;

}

.shop-top{

display:flex;

justify-content:space-between;

align-items:center;

gap:25px;

margin-bottom:45px;

flex-wrap:wrap;

}

.shop-top input{

flex:1;

height:58px;

border:none;

border-radius:50px;

padding:0 25px;

font-size:16px;

background:#F8F4EE;

outline:none;

transition:.3s;

}

.shop-top input:focus{

box-shadow:0 0 0 3px rgba(139,107,74,.15);

}

.category-buttons{

display:flex;

gap:12px;

flex-wrap:wrap;

}

.category-btn{

padding:12px 24px;

border:none;

border-radius:40px;

background:#F8F4EE;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.category-btn.active{

background:#8B6B4A;

color:#fff;

}

.category-btn:hover{

transform:translateY(-2px);

}

.shop-title{

margin-bottom:40px;

}

.shop-title h2{

font-family:'Cormorant Garamond',serif;

font-size:48px;

margin-bottom:10px;

}

.shop-title p{

font-size:17px;

color:#777;

}

/*=========================================
PRODUCT GRID
=========================================*/

#productGrid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

/*=========================================
PRODUCT CARD
=========================================*/

.featured-card{

position:relative;

background:#fff;

border-radius:28px;

padding:30px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.35s;

overflow:hidden;

}

.featured-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.featured-card img{

width:220px;

height:220px;

object-fit:contain;

display:block;

margin:0 auto 25px;

transition:.35s;

}

.featured-card:hover img{

transform:scale(1.05);

}

.featured-card h3{

font-size:26px;

margin-bottom:10px;

font-family:'Cormorant Garamond',serif;

}

.featured-card p{

font-size:15px;

line-height:1.7;

color:#666;

margin-bottom:18px;

}

.rating{

color:#D6A84F;

margin-bottom:12px;

font-size:18px;

}

.price{

font-size:28px;

font-weight:700;

color:#8B6B4A;

margin-bottom:20px;

}

.product-badge{

position:absolute;

top:20px;

left:20px;

padding:8px 16px;

background:#8B6B4A;

color:#fff;

font-size:12px;

font-weight:600;

border-radius:30px;

}

/*=========================================
EMPTY
=========================================*/

.empty-products{

grid-column:1/-1;

text-align:center;

padding:80px 20px;

}

.empty-products h2{

font-size:36px;

margin-bottom:15px;

}

.empty-products p{

color:#777;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.shop-top{

flex-direction:column;

align-items:stretch;

}

#productGrid{

grid-template-columns:1fr;

}

.shop-hero h1{

font-size:44px;

}

.shop-title h2{

font-size:36px;

}

.featured-card img{

width:180px;

height:180px;

}

}