/* ================= BRAND ================= */
:root {
    --bg: #FAE3C6;
    --gold: #D5A740;
    --green: #1B5D33;
    --white: #ffffff;
    --soft-white: #fffaf2;
    --text: #222;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Inter', sans-serif;
    background:var(--bg);
}

/* ================= TOP SCROLL BAR ================= */
/* ================= PREMIUM MARQUEE ================= */

.top-marquee{
    width:100%;
    background:#1b5d33;
    overflow:hidden;
    height:38px;
    display:flex;
    align-items:center;
}

/* WRAPPER */
.marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* CONTENT */
.marquee-content{
    display:flex;
    width:max-content;
    animation: marqueeMove 12s linear infinite;
}

/* TEXT */
.marquee-content span{
    white-space:nowrap;
    color:#fff;
    font-size:13px;
    padding-right:80px;
}

/* 🔥 HOVER PAUSE */
.marquee:hover .marquee-content{
    animation-play-state: paused;
}

/* 🔥 PERFECT LOOP ANIMATION */
@keyframes marqueeMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px){

.top-marquee{
    height:32px;
}

.marquee-content span{
    font-size:12px;
    padding-right:50px;
}

}



/* ================= PREMIUM HEADER ================= */

.header{
    background: linear-gradient(90deg, #f7f1e8, #fdfaf5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    
    padding: 14px 0;   /* 🔥 HEIGHT INCREASE */
}

/* INNER */
.header-inner{
    width:92%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

/* LOGO */
.logo-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-box img{
    width:48px;
    height:48px;
    border-radius:50%;
}

.brand-name{
    font-weight:600;
    font-size:18px;
    color:var(--green);
}

/* SEARCH */
.search-bar{
    flex:1;
    max-width:520px;
    display:flex;
    background:#fff;
    border-radius:50px;
    border:1px solid #eee;
    overflow:hidden;

    box-shadow:0 4px 12px rgba(0,0,0,0.05); /* 🔥 premium */
}

.search-bar input{
    flex:1;
    padding:12px 18px;
    border:none;
    outline:none;
    font-size:14px;
}

.search-bar button{
    background:var(--gold);
    border:none;
    padding:0 20px;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
}

.search-bar i{
    font-size:14px;
}

.search-bar{
    position:relative;
}

/* RESULT BOX */
.search-results{
    position:absolute;
    top:105%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
    max-height:350px;
    overflow-y:auto;
    display:none;
    z-index:999;
}

/* ITEM */
.search-item{
    display:flex;
    gap:12px;
    padding:12px;
    cursor:pointer;
    border-bottom:1px solid #eee;
    transition:0.3s;
}

.search-item:hover{
    background:#f9f9f9;
}

/* IMAGE */
.search-item img{
    width:55px;
    height:55px;
    object-fit:contain;
}

/* TEXT */
.search-info .title{
    font-size:13px;
    font-weight:500;
}

.search-info small{
    color:#1b5d33;
    font-weight:600;
}

/* PLATFORM BADGE */
.platform{
    font-size:10px;
    background:#facc15;
    padding:2px 6px;
    border-radius:6px;
    margin-left:5px;
}

/* WHATSAPP BUTTON */
.contact-box a{
    display:flex;
    align-items:center;
    gap:8px;

    background:#25D366;
    color:#fff;
    padding:10px 16px;
    border-radius:50px;

    text-decoration:none;
    font-weight:500;
    font-size:14px;

    box-shadow:0 6px 18px rgba(0,0,0,0.1);

    transition:0.3s;
}

/* ICON */
.contact-box i{
    font-size:16px;
}

/* HOVER EFFECT */
.contact-box a:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* MOBILE */
@media(max-width:768px){

.header-inner{
    flex-wrap:wrap;
    gap:10px;
}

/* LOGO FULL WIDTH */
.logo-box{
    width:100%;
    justify-content:center;
}

/* SEARCH FULL WIDTH */
.search-bar{
    width:100%;
}

/* CONTACT FULL WIDTH */
.contact-box{
    width:100%;
}

.contact-box a{
    justify-content:center;
}

}

/* ===== MOBILE HEADER FIX ===== */
@media(max-width:768px){

/* Layout control */
.header-inner{
    display:flex;
    flex-wrap:nowrap;   /* 🔥 sab ek line me rakho */
    gap:8px;
}

/* LOGO small */
.logo-box img{
    width:36px;
    height:36px;
}

.brand-name{
    display:none; /* 🔥 mobile pe hata do space ke liye */
}

/* SEARCH BAR WIDE */
.search-bar{
    flex:1.8;   /* 🔥 zyada space lega */
    max-width:none;
}

/* input padding compact */
.search-bar input{
    padding:10px 12px;
    font-size:13px;
}

/* button compact */
.search-bar button{
    padding:0 12px;
}

/* WHATSAPP SMALL */
.contact-box a{
    flex:1;   /* 🔥 kam space lega */
    padding:8px 10px;
    font-size:12px;
    gap:5px;
}

/* number shorten feel */
.contact-box span{
    white-space:nowrap;
    font-size:10px;
}

/* icon small */
.contact-box i{
    font-size:14px;
}

}

/* ================= CATEGORY ================= */

.category-section{
    background:
        url('https://www.transparenttextures.com/patterns/arabesque.png'),
        var(--green); /* tera green color same rahega */
    
    padding: 15px 0;
}

/* WRAPPER */
.cat-wrapper{
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    color: wheat;
}

.cat-wrapper::-webkit-scrollbar{
    display: none;
}

/* ITEM */
.cat-item{
    text-align: center;
    min-width: 90px;
}

/* IMAGE */
.cat-item img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 4px;
    background: white;
    transition: 0.3s;
}

.cat-item:hover img{
    transform: scale(1.08);
}

/* TEXT */
.cat-item span{
    white-space: nowrap;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.cat-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* ================= HERO BANNER ================= */

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    height:420px;
    overflow:hidden;
}

/* LEFT SIDE */
.hero-left{
    position:relative;
    overflow:hidden;
}

.hero-slider{
    display:flex;
    height:100%;
    transition:transform 0.6s ease;
}

.slide{
    min-width:100%;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* GRADIENT OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.4), transparent);
}

/* RIGHT SIDE */
.hero-right{
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

/* CONTENT */
.hero-content{
    max-width:400px;
    animation:fadeUp 0.8s ease;
}

.hero-sub{
    color:#888;
    margin-bottom:10px;
}

.hero-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.hero-title span{
    color:#c89b3c;
}

.hero-desc{
    color:#555;
    margin-bottom:20px;
}

/* BUTTONS */
.hero-btns{
    display:flex;
    gap:12px;
}

.btn-primary{
    background:#c89b3c;
    color:#fff;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;
}

.btn-outline{
    border:1px solid #c89b3c;
    color:#c89b3c;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;

    display:inline-flex;           /* FIX */
    align-items:center;            /* FIX */
    justify-content:center;        /* FIX */
    min-height:42px;               /* FIX */
}

/* ================= CLICK FIX (FINAL) ================= */
.hero-overlay{
    pointer-events: none;
}

/* Slider ko proper layer do */
.hero-slider{
    position:relative;
    z-index:2;
}

/* Slide clickable banega */
.slide{
    min-width:100%;
    display:block;
    position:relative;
    z-index:3;
    cursor:pointer;
}

/* Image click block na kare */
.slide img{
    pointer-events:none;
}

/* Overlay niche rahe */
.hero-overlay{
    pointer-events:none;
    z-index:1;
}

/* Dots upar clickable rahe */
.hero-dots{
    z-index:5;
}

/* Extra safety (mobile click fix) */
.hero-left{
    position:relative;
    z-index:2;
}

/* DOTS */
.hero-dots{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
}

.hero-dots span{
    width:8px;
    height:8px;
    background:#fff;
    opacity:0.5;
    border-radius:50%;
    cursor:pointer;
}

.hero-dots .active{
    opacity:1;
}

/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){
    .hero-container{
        grid-template-columns:1fr;
        height:auto;
    }

    .hero-left{
        height:230px;
    }
}

@media(max-width:768px){

    .hero-btns{
        flex-direction:row;
        align-items:center;
    }

    .btn-primary,
    .btn-outline{
        flex:1;                  /* dono equal width */
        text-align:center;
    }
}

.btn-outline:hover{
    background:#c89b3c;
    color:#fff;
}


/* ================= AMAZON PRODUCT Section ================= */


.product-section{
    padding:20px;
}

.product-row{
    display:flex;
    gap:15px;
    overflow-x:auto;
}

.product-card{
    min-width:180px;
    border:1px solid #eee;
    padding:10px;
    border-radius:10px;
    text-decoration:none;
    color:#000;
}

.product-card img{
    width:100%;
    height:150px;
    object-fit:cover;
}


