 /* ===========================
   RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#0a0a0a;
color:#fff;
font-family:'Poppins',sans-serif;
overflow-x:hidden;
}

a{
text-decoration:none;
color:#fff;
}

img{
max-width:100%;
display:block;
}

/* ===========================
   HEADER
=========================== */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 70px;
border-bottom:1px solid #222;
background:#0a0a0a;
position:sticky;
top:0;
z-index:999;
}

.logo img{
width:60px;
}

nav{
display:flex;
gap:35px;
align-items:center;
}

nav a{
font-size:12px;
letter-spacing:2px;
transition:.3s;
}

nav a:hover,
nav .active{
color:#d8c4a4;
}

/* ===========================
   SHOP HEADER
=========================== */

.shop-header{
padding:80px 20px 40px;
text-align:center;
}

.shop-header h1{
font-family:'Cinzel',serif;
font-size:58px;
margin-bottom:15px;
}

.shop-header p{
color:#aaa;
letter-spacing:1px;
}

/* ===========================
   FILTERS
=========================== */

.filters{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
padding-bottom:50px;
}

.filters button{
background:transparent;
color:#fff;
border:1px solid #333;
padding:12px 24px;
cursor:pointer;
transition:.3s;
letter-spacing:2px;
font-size:11px;
}

.filters button:hover{
background:#fff;
color:#000;
}

/* ===========================
   PRODUCTS
=========================== */

.products{
padding:0 70px 80px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.product-card{
background:#111;
border:1px solid #222;
border-radius:16px;
padding:18px;
transition:.35s;
}

.product-card:hover{
transform:translateY(-8px);
border-color:#666;
}

.product-image{
height:320px;
background:#1b1b1b;
border-radius:12px;
margin-bottom:18px;
transition:.35s;
}

.product-card:hover .product-image{
background:#242424;
}

.product-card h3{
font-size:18px;
margin-bottom:10px;
}

.product-card p{
color:#bbb;
margin-bottom:20px;
}

.product-card a{
display:inline-block;
padding:12px 22px;
border:1px solid #555;
font-size:12px;
letter-spacing:2px;
transition:.35s;
}

.product-card a:hover{
background:#fff;
color:#000;
}

/* ===========================
   LOAD MORE
=========================== */

.load-more{
display:flex;
justify-content:center;
padding-bottom:90px;
}

.load-more a{
padding:16px 40px;
border:1px solid #555;
transition:.35s;
letter-spacing:2px;
}

.load-more a:hover{
background:#fff;
color:#000;
}

/* ===========================
   FOOTER
=========================== */

footer{
border-top:1px solid #222;
padding:60px 20px;
text-align:center;
}

.footer-logo img{
width:80px;
margin:auto;
margin-bottom:20px;
}

.footer-logo p{
color:#aaa;
margin-bottom:30px;
}

.footer-links{
display:flex;
justify-content:center;
gap:30px;
margin-bottom:25px;
flex-wrap:wrap;
}

.footer-links a:hover{
color:#d8c4a4;
}

.copyright{
color:#666;
font-size:13px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1000px){

header{
padding:20px;
}

nav{
display:none;
}

.products{
grid-template-columns:repeat(2,1fr);
padding:0 20px 60px;
}

.shop-header h1{
font-size:40px;
}

}

@media(max-width:650px){

.products{
grid-template-columns:1fr;
}

.filters{
padding:0 20px 40px;
}

.product-image{
height:280px;
}

}
body{

opacity:0;

transition:.6s;

}

.show{

opacity:1 !important;

transform:translateY(0) !important;

}

.product-card,
.collection,
.box,
.contact-form,
.about-photo{

opacity:0;

transform:translateY(50px);

transition:1s;

}

.active-size{

background:#fff !important;

color:#000 !important;

border-color:#fff !important;

}

.active-filter{

background:#fff !important;

color:#000 !important;

}