/* ===== RESET ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#111;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:92%;
max-width:1200px;
margin:auto;
}

/* ===== TOP BAR ===== */

.top-bar{
background:#000;
color:#fff;
font-size:13px;
padding:10px 0;
}

.top-bar .container{
display:flex;
justify-content:space-between;
}

/* ===== HEADER ===== */

.header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:60px;
}

.header-icons{
display:flex;
gap:20px;
font-size:22px;
cursor:pointer;
}
/* ===== HERO ===== */

.hero{
height:80vh;
align-items:center;
justify-content:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
}

.hero-content{
position:relative;
text-align:center;
color:#fff;
padding:20px;
}

.hero-content h4{
color:#d4af37;
letter-spacing:3px;
margin-bottom:15px;
}

.hero-content h1{
font-size:50px;
line-height:1.2;
margin-bottom:15px;
}

.hero-content p{
font-size:18px;
margin-bottom:25px;
}

.shop-btn{
display:inline-block;
padding:14px 35px;
background:#d4af37;
color:#fff;
border-radius:40px;
font-weight:600;
}

.shop-btn:hover{
background:#000;
}
/* ===== CATEGORY ===== */

.category{
padding:60px 0;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:30px;
}

.category-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.category-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.category-card:hover{
transform:translateY(-5px);
}

.category-card img{
width:100%;
height:220px;
object-fit:cover;
}

.category-card h3{
padding:15px;
text-align:center;
}
/* ===== FEATURED PRODUCTS ===== */

.products{
    padding:60px 0;
    background:#f8f8f8;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.product-card h3{
    font-size:18px;
    padding:10px 15px 5px;
}

.product-card p{
    padding:0 15px;
    font-weight:700;
    color:#d4af37;
}

.product-card button{
    width:calc(100% - 30px);
    margin:15px;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#000;
    color:#fff;
    font-size:15px;
    cursor:pointer;
}

.product-card button:hover{
    background:#d4af37;
}
.mobile-menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s;
    z-index: 9999;
}

.mobile-menu a{
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin: 12px 0;
}

.mobile-menu.active{
    right: 0;
}
/* PRODUCTS */

.products{
    padding:50px 15px;
    background:#f8f8f8;
}

.products h2{
    text-align:center;
    font-size:28px;
    margin-bottom:25px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
    padding:10px;
}

.product-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.product-card h3{
    margin:10px 0 5px;
}

.product-card p{
    font-weight:bold;
    color:#000;
}

.product-card button{
    width:100%;
    padding:10px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
}
/* HERO SLIDER */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.hero-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.shop-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}


.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:1;
}