/* =========================================
   LEHNGA BAZAR - PROFESSIONAL CSS
   PART 1 : RESET + BODY + HEADER
========================================= */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f8f8;
    color:#222;
}

/* ================= HEADER ================= */

header{
    width:100%;
    height:90px;
    background:#111111;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

/* Logo */

.logo img{
    width:120px;
    height:auto;
    display:block;
}
/* ================= NAVIGATION ================= */

.menu{
    display:flex;
    align-items:center;
    gap:18px;
    margin-left:30px;
}

.menu a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    padding:10px 14px;
    border-radius:6px;
    transition:.3s;
}

.menu a:hover{
    color:#d4af37;
    background:rgba(255,255,255,.08);
}

/* =============== DROPDOWN =============== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#ffffff;
    min-width:240px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    display:none;
}

.dropdown-menu a{
    display:block;
    color:#222;
    padding:12px 18px;
    font-size:14px;
    border-bottom:1px solid #f2f2f2;
}

.dropdown-menu a:hover{
    background:#d4af37;
    color:#111111;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

/* ================= SEARCH ================= */

.search{
    display:flex;
    align-items:center;
    margin-left:25px;
}

.search input{
    width:300px;
    height:42px;
    border:none;
    outline:none;
    padding:0 15px;
    border-radius:30px;
    font-size:15px;
}

.search input::placeholder{
    color:#888;
}

/* ================= RIGHT MENU ================= */

.right{
    display:flex;
    align-items:center;
    gap:20px;
    margin-left:25px;
}

.right a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.right a:hover{
    color:#d4af37;
}
/* =========================================
   HERO SECTION
========================================= */

.hero{
    width:100%;
    height:650px;
    background:url("images/banner.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero-text{
    position:relative;
    z-index:1;
    color:#ffffff;
}

.hero-text h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.hero-text p{
    font-size:24px;
    margin-bottom:30px;
}

.hero-text button{
    background:#d4af37;
    color:#111111;
    border:none;
    padding:15px 40px;
    border-radius:30px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.hero-text button:hover{
    background:#ffffff;
    color:#111111;
    transform:translateY(-3px);
}
/* =========================================
   SHOP BY CATEGORY
========================================= */

.section-title{
    text-align:center;
    font-size:38px;
    color:#111;
    margin:70px 0 40px;
    font-weight:700;
}

.categories{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-bottom:70px;
}

.category-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.3s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.category-card h3{
    text-align:center;
    padding:18px;
    font-size:22px;
    color:#111;
}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.products{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:70px;
}

.card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:330px;
    object-fit:cover;
}

.card h2{
    text-align:center;
    padding-top:15px;
    font-size:22px;
}

.card p{
    text-align:center;
    color:#d4af37;
    font-size:24px;
    font-weight:600;
    margin:15px 0;
}

.card button{
    display:block;
    width:90%;
    margin:0 auto 20px;
    padding:12px;
    background:#111111;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.card button:hover{
    background:#d4af37;
    color:#111111;
}
/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose{
    width:90%;
    margin:70px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box h3{
    margin:20px 0 10px;
    color:#111;
}

.why-box p{
    color:#666;
    line-height:26px;
}

/* =========================================
   CUSTOMER REVIEWS
========================================= */

.reviews{
    width:90%;
    margin:70px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.review-card h4{
    color:#111;
    margin-bottom:10px;
}

.review-card p{
    color:#666;
    line-height:28px;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#111111;
    color:#ffffff;
    padding:60px 8% 30px;
    margin-top:60px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-logo{
    width:120px;
    margin-bottom:15px;
}

.footer-box h2{
    margin-bottom:15px;
}

.footer-box h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-box p{
    color:#d0d0d0;
    line-height:30px;
}

.footer-box a{
    display:block;
    color:#d0d0d0;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:#d4af37;
    padding-left:8px;
}

.footer hr{
    border:1px solid #333;
    margin:40px 0 20px;
}

.copyright{
    text-align:center;
    color:#999;
}