/* =========================
   GLOBAL
========================= */

body{
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f8fa;
    color:#222;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* =========================
   TOP HEADER
========================= */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none; /* optional: removes underline */
    gap: 10px; /* image aur text ke beech spacing */
}

.logo img {
    max-height: 132px; /* image size adjust karne ke liye */
}
/* HEADER */

.top-header{
    background:#fff;
    padding:20px 0;
    box-shadow:0;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#ff6f61;
}

.search-box{
    position:relative;
}

.search-box input{
    height:52px;
    border-radius:8px;
    padding-right:60px;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;
    width:42px;
    height:42px;
    border:none;
    border-radius:6px;
    background:#ff6f61;
    color:#fff;
}

.header-right{
    display:flex;
    justify-content:end;
    align-items:center;
    gap:15px;
}

.header-right a{
    color:#333;
    font-size:14px;
    font-weight:600;
}

.header-right i{
    margin-right:5px;
}

/* =========================
   NAVBAR
========================= */
.custom-toggler{
    background:#00a651;
    color:#fff;
    border:none;
    width:50px;
    height:50px;
    border-radius:12px;
    font-size:24px;
}

.custom-toggler:focus{
    box-shadow:none;
}

.mobile-menu-header{
    display:none;
}

.menu-overlay{
    /*position:fixed;*/
    top:0;
    left:0;
    width:100%;
    height:100%;
background:rgba(255,255,255,.20);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.menu-overlay.show{
    opacity:1;
    visibility:visible;
}

@media(max-width:991px){

.main-navbar{
    padding:10px 0;
}

#mainMenu{

    position:fixed;

    top:0;
    left:-300px;

    width:280px;

    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.35s;

    padding:20px;

    overflow-y:auto;

    box-shadow:0 0 30px rgba(0,0,0,.2);

}

#mainMenu.show{
    left:0;
}

.mobile-menu-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

    padding-bottom:15px;

    border-bottom:1px solid #eee;

}

.mobile-menu-header button{

    width:40px;

    height:40px;

    border:none;

    background:#f5f5f5;

    border-radius:10px;

}

.main-navbar .navbar-nav{
    display:block;
    width:100%;
}

.main-navbar .nav-link{

    display:block;

    padding:14px !important;

    margin-bottom:8px;

    border-radius:10px;

}

.main-navbar .nav-link:hover{
    background:#f5f5f5;
}

.main-navbar .nav-link::after{
    display:none !important;
}

}
/* ==========================
   PREMIUM NAVBAR
========================== */

.main-navbar{
    background:#ffffff;
    border-top:1px solid #f1f1f1;
    border-bottom:1px solid #f1f1f1;
    position:sticky;
    top:0;
    z-index:999;
}

.main-navbar .navbar-nav{
    gap:8px;
}

.main-navbar .nav-link{
    color:#222;
    font-size:16px;
    font-weight:600;
    padding:18px 20px !important;
    position:relative;
    transition:.3s;
}

.main-navbar .nav-link:hover{
    color:#00a651;
}

.main-navbar .nav-link.active{
    color:#00a651;
}

.main-navbar .nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:8px;
    width:0;
    height:3px;
    background:#00a651;
    transition:.3s;
    transform:translateX(-50%);
    border-radius:50px;
}

.main-navbar .nav-link:hover::after{
    width:60%;
}

.main-navbar .nav-link.active::after{
    width:60%;
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
    font-size:28px;
}

.navbar-toggler:focus{
    box-shadow:none;
}
.custom-toggler{
    border:none;
    background:#00a651;
    color:#fff;
    margin-top: -417px;
    width:48px;
    height:48px;
    border-radius:12px;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.custom-toggler:focus{
    box-shadow:none;
}

@media(max-width:991px){

.main-navbar{
    position:relative;
}

#mainMenu{

    position:fixed;

    top:0;
    left:-320px;

    width:280px;
    height:100vh;

    background:#fff;

    z-index:99999;

    padding:30px 20px;

    transition:.35s ease;

    overflow-y:auto;

    box-shadow:0 0 30px rgba(0,0,0,.2);

}

#mainMenu.show{
    left:0;
}

.main-navbar .navbar-nav{
    display:block;
    width:100%;
    margin-top:30px;
}

.main-navbar .nav-link{

    display:block;

    padding:15px !important;

    border-radius:10px;

    margin-bottom:8px;

}

.main-navbar .nav-link:hover{

    background:#f5f5f5;

}

}
/* =========================
   HERO SECTION
========================= */

.hero-section{
    padding:40px 0;
}

.hero-banner{
    background:linear-gradient(
    135deg,
    #ff6f61,
    #ff8c42
    );

    color:#fff;
    border-radius:15px;
    padding:60px;
}

.hero-banner h1{
    font-size:42px;
    font-weight:700;
}

.hero-banner p{
    font-size:18px;
    margin-top:15px;
}

.hero-btn{
    display:inline-block;
    background:#fff;
    color:#ff6f61;
    padding:12px 25px;
    border-radius:8px;
    font-weight:700;
    margin-top:15px;
}

/* =========================
   CATEGORY SECTION
========================= */

.section-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.category-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    text-align:center;
    transition:.3s;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-card img{
    width:80px;
    height:80px;
    object-fit:cover;
    margin-bottom:10px;
}

.category-card h5{
    margin:0;
}

/* =========================
   PRODUCT CARD
========================= */
.product-link{
display:block;
text-decoration:none;
color:#222;
}
.product-card{
background:#fff;
border:1px solid #eee;
border-radius:12px;
overflow:hidden;
height:100%;
transition:.3s;
}
.product-card:hover{
box-shadow:0 10px 30px rgba(0,0,0,.08);
transform:translateY(-3px);
}
.product-image{
height:180px;
display:flex;
align-items:center;
justify-content:center;
padding:10px;
background:#fff;
}
.product-card-slider{
min-width:240px;
max-width:240px;
}
.product-image img{
max-width:100%;
max-height:160px;
object-fit:contain;
}

.product-content{
padding:12px;
}


.product-name{
font-size:15px;
font-weight:600;
line-height:1.4;
height:42px;
overflow:hidden;
}

.price-box{
    margin-top:10px;
}

.old-price{
font-size:14px;
color:#999;
text-decoration:line-through;
}

.sale-price{
font-size:24px;
font-weight:700;
color:#ff6f61;
}
.buy-btn{
display:block;
width:100%;
padding:10px;
text-align:center;
background:#ff6f61;
color:#fff;
border-radius:8px;
text-decoration:none;
margin-top:10px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#111827;
    color:#fff;
    margin-top:60px;
    padding:50px 0 20px;
}

.footer h4{
    margin-bottom:20px;
}

.footer ul{
    padding:0;
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#ddd;
}

.footer ul li a:hover{
    color:#fff;
}

.copyright{
    text-align:center;
    padding-top:10px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.header-right{
    justify-content:center;
    margin-top:15px;
    flex-wrap:wrap;
}

.logo{
    display:block;
    text-align:center;
}

.hero-banner{
    padding:30px;
    text-align:center;
}

.hero-banner h1{
    font-size:28px;
}

.hero-banner p{
    font-size:15px;
}

.section-title{
    font-size:22px;
}

}

/* HOME SLIDER */

.slider-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.slider-image{
    width:100%;
    height:500px;
    object-fit:cover;
}

.slider-content{

    position:absolute;

    top:50%;
    left:60px;

    transform:translateY(-50%);

    max-width:500px;

    color:#000;

}

.slider-content h2{

    font-size:48px;
    font-weight:700;

}

.slider-content p{

    font-size:18px;
    margin:20px 0;

}

.slider-btn{

    display:inline-block;

    padding:12px 30px;

    background:#00a651;

    color:#fff;

    border-radius:10px;

    font-weight:600;

}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

@media(max-width:768px){

.slider-image{
    height:250px;
}

.slider-content{

    left:20px;
    right:20px;

}

.slider-content h2{
    font-size:24px;
}

.slider-content p{
    font-size:14px;
}

}
.featured-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.featured-slider::-webkit-scrollbar{
    height:6px;
}

.featured-slider::-webkit-scrollbar-thumb{
    background:#ddd;
    border-radius:20px;
}

.product-card-slider{
    min-width:260px;
    max-width:260px;
}

.discount-badge{
display:inline-block;
background:#e8f5e9;
color:#198754;
padding:4px 10px;
font-size:12px;
font-weight:600;
border-radius:20px;
margin:8px 0;
}

```css
.product-detail-image{
background:#fff;
padding:20px;
border-radius:15px;
border:1px solid #eee;
text-align:center;
}

.product-detail-image img{
max-height:400px;
object-fit:contain;
}

.product-detail-title{
font-size:32px;
font-weight:700;
}

.discount-badge{
display:inline-block;
background:#e8f5e9;
color:#198754;
padding:6px 12px;
border-radius:20px;
font-weight:600;
}

.old-price{
text-decoration:line-through;
color:#888;
font-size:18px;
}

.sale-price{
font-size:32px;
font-weight:700;
color:#ff6f61;
}

