        /* --- BRAND COLORS & VARIABLES --- */
        :root {
            --brand-orange: #FF7A1A;
            --brand-orange-dark: #F26A1B;
            --burnt-grey: #303338;
            --burnt-grey-dark: #25272a;
            --bg-white: #FFFFFF;
            --border-light: #E0E0E0;
            --text-main: #333333;
            --bg-body: #F4F4F4; 
        }

        /* --- GLOBAL STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body { background-color: var(--bg-body); color: var(--text-main); }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1400px !important; margin: 0 auto; padding: 0 15px; }

        a:hover{text-decoration: none !important;}
        /* --- TOP HEADER --- */
        .top-header { background-color: var(--bg-white); padding: 15px 0; border-bottom: 1px solid var(--border-light); }
        .header-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
        
        .logo { width: auto; display: flex; align-items: center; font-size: 26px; font-weight: 800; color: var(--burnt-grey); letter-spacing: 1px; }
        .logo span { color: var(--brand-orange); }

        .location-box { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--burnt-grey); cursor: pointer; }
        .location-box i { font-size: 20px; color: var(--brand-orange); }
        .location-box div strong { font-size: 14px; display: block; }

        .search-box { display: flex; flex-grow: 1; min-width: 250px; max-width: 600px; height: 45px; border: 2px solid var(--brand-orange); border-radius: 6px; overflow: hidden; background: var(--bg-white); }
        .search-box input { flex-grow: 1; border: none; padding: 0 15px; font-size: 15px; outline: none; width: 100%; }
        .search-box button { background-color: var(--brand-orange); border: none; color: var(--bg-white); width: 55px; cursor: pointer; font-size: 18px; transition: background 0.2s; }
        .search-box button:hover { background-color: var(--brand-orange-dark); }

        .right-menu { display: flex; align-items: center; gap: 20px; }
        
        /* NEW: Language & Currency Selector */
        .lang-selector { display: flex; align-items: center; gap: 5px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--burnt-grey); transition: color 0.2s; }
        .lang-selector img { width: 20px; border-radius: 2px; }
        .lang-selector:hover { color: var(--brand-orange); }

        .menu-item { display: flex; flex-direction: column; align-items: center; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--burnt-grey); transition: color 0.2s; }
        .menu-item i { font-size: 20px; margin-bottom: 3px; }
        .menu-item:hover { color: var(--brand-orange); text-decoration: none !important; }
        
        .cart-wrapper { position: relative; display: flex; align-items: center; gap: 5px; }
        .cart-count { position: absolute; top: -8px; left: 12px; background-color: var(--brand-orange); color: var(--bg-white); font-size: 11px; padding: 2px 6px; border-radius: 50%; font-weight: bold; }
        .wishlist-count { position: absolute; top: -8px; left: 12px; background-color: var(--brand-orange); color: var(--bg-white); font-size: 11px; padding: 2px 6px; border-radius: 50%; font-weight: bold; }

        /* --- CATEGORY NAVIGATION BAR --- */
        .category-nav { background-color: var(--burnt-grey); color: var(--bg-white); }
        
        /* CHANGED: justify-content to flex-start for left alignment */
        .nav-list { display: flex; align-items: center; justify-content: flex-start; gap: 35px; padding: 12px 20px; overflow-x: auto; white-space: nowrap; }
        .nav-list::-webkit-scrollbar { display: none; }
        .nav-list li a { font-size: 14px; font-weight: 500; transition: color 0.2s; text-transform: uppercase; color: white !important; }
        .nav-list li a:hover { color: var(--brand-orange) !important; text-decoration: none !important; }


        .account-dropdown-container {
        position: relative;
        display: inline-block;
        cursor: pointer;
        }

        .account-trigger {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        }

         .account-trigger:hover {
            color: var(--brand-orange) !important;
         }

        .dropdown-menu {
        display: none; 
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #ffffff;
        min-width: 150px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
        z-index: 999;
        border-radius: 4px;
        border: 1px solid #ddd;
        }

        .account-dropdown-container:hover .dropdown-menu {
        display: block;
        }

        .dropdown-menu ul {
        list-style-type: none;
        margin: 0;
        padding: 10px 0;
        }

        .dropdown-menu li a {
        color: #333;
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        font-size: 14px;
        text-align: left;
        }

        .dropdown-menu li a:hover {
        background-color: #f1f1f1;
        color: #ff9900;
        }

        
        /* --- NEW HERO SECTION --- */
        .hero-section {
            padding: 20px 0;
        }
        .hero-banner {
            background: linear-gradient(135deg, var(--brand-orange-dark) 0%, var(--brand-orange) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 40px 60px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(242, 106, 27, 0.2);
            min-height: 350px;
        }
        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--bg-white);
            max-width: 50%;
        }
        .hero-content h1 {
            font-size: 65px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .hero-content p {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }
        .hero-btn {
            background-color: var(--burnt-grey) !important;
            color: var(--brand-orange) !important;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .hero-btn:hover {
            background-color: var(--burnt-grey-dark) !important;
            color: var(--bg-white) !important;
        }
        .hero-images {
            position: relative;
            z-index: 2;
            width: 45%;
            display: flex;
            justify-content: center;
        }
        .hero-images img {
            max-width: 100%;
            max-height: 280px;
            object-fit: contain;
            filter: drop-shadow(0 15px 15px rgba(0,0,0,0.3));
        }

        /* --- CATEGORY PILLS (Under Banner) --- */
        .category-pills {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-top: -20px;
            position: relative;
            z-index: 5;
            padding: 0 10px;
        }
        .pill-card {
            background: var(--bg-white);
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 15px 10px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid var(--border-light);
            font-weight: 600;
            color: var(--burnt-grey);
        }
        .pill-card:hover {
            border-color: var(--brand-orange);
            transform: translateY(-3px);
            color: var(--brand-orange);
            text-decoration: none !important;
        }
        .pill-card i { font-size: 24px; color: var(--burnt-grey-dark); }
        .pill-card:hover i { color: var(--brand-orange); }

        /* --- SECTIONS SPACING --- */
        .section-wrapper { margin: 40px 0; }
        .section-title { font-size: 22px; margin-bottom: 20px; color: var(--burnt-grey); border-bottom: 2px solid var(--border-light); padding-bottom: 10px; font-weight: bold; }

        /* --- GRID LAYOUTS --- */
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

        /* Product Card */
        .product-card { background: var(--bg-white); border: 1px solid var(--border-light); padding: 15px; border-radius: 6px; transition: border-color 0.3s; display: flex; flex-direction: column; text-align: center; }
        .product-card:hover { border-color: var(--brand-orange); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .product-img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 15px; }
        .product-title { font-size: 16px; margin-bottom: 8px; color: var(--burnt-grey); line-height: 1.4; flex-grow: 1; font-weight: 600; }
        .product-price { font-size: 22px; color: var(--brand-orange); font-weight: bold; margin-bottom: 15px; }
        
        .btn { background-color: var(--brand-orange) !important; color: var(--bg-white) !important; border: none; padding: 12px; border-radius: 4px; cursor: pointer; font-weight: bold; transition: 0.3s; width: 100%; font-size: 15px; }
        .btn:hover { background-color: var(--brand-orange-dark) !important; text-decoration: none !important; }
        .header-right{ float: right; font-size: 16px; color: var(--brand-orange);}
        /* --- INFO BANNER --- */
        .info-banner-container {
            background-color: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            margin: 40px 0;
        }
        .info-features {
            flex: 1;
            background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-dark));
            padding: 40px;
            display: flex;
            justify-content: space-around;
            color: var(--bg-white);
        }
        .feature-item { text-align: center; }
        .feature-item i { font-size: 40px; margin-bottom: 10px; }
        .feature-item p { font-weight: bold; font-size: 16px; }
        .info-image { flex: 1; padding: 20px; display: flex; justify-content: center; background: #fff; }
        .info-image img { max-width: 250px; }

        /* --- NEWSLETTER --- */
        .newsletter { background-color: var(--burnt-grey); color: var(--bg-white); text-align: center; padding: 50px 15px; margin-top: 50px; }
        .newsletter input { padding: 15px; width: 100%; max-width: 400px; border: none; border-radius: 4px 0 0 4px; outline: none; font-size: 15px; }
        .newsletter button { padding: 15px 25px; background: var(--brand-orange); border: none; color: white; font-weight: bold; border-radius: 0 4px 4px 0; cursor: pointer; font-size: 15px; }
        .newsletter button:hover { background: var(--brand-orange-dark); }
        .newsletter-form { display: flex; justify-content: center; margin-top: 20px; }

        /* --- FOOTER --- */
        .footer { background-color: var(--burnt-grey-dark); color: var(--bg-white); padding: 40px 0 20px 0; text-align: center; }
        .footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-links a { transition: 0.3s; font-size: 15px; color: white !important; }
        .footer-links a:hover { color: var(--brand-orange); }
        .copyright { font-size: 14px; color: #888; }
        .w130{ width: 130px;}

        /* --- RESPONSIVE CSS --- */
        @media (max-width: 1024px) {
            .hero-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
            .hero-content { max-width: 100%; margin-bottom: 30px; }
            .hero-images { width: 80%; }
            .category-pills { flex-wrap: wrap; margin-top: 20px; }
            .pill-card { flex: 1 1 30%; }
            .info-banner-container { flex-direction: column; }
            .info-features { width: 100%; padding: 30px 10px; }
        }

        @media (max-width: 768px) {
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .search-box { order: 3; width: 100%; min-width: 100%; margin-top: 15px; }
            .right-menu { flex-grow: 1; justify-content: flex-end; }
            .location-box { display: none; }
            .hero-content h1 { font-size: 45px; }
        }

        @media (max-width: 480px) {
            .grid-4 { grid-template-columns: 1fr; }
            .pill-card { flex: 1 1 100%; }
            .right-menu { gap: 12px; }
            .menu-item span { display: none; } 
            .menu-item i { font-size: 22px; margin: 0; }
            .newsletter-form { flex-direction: column; align-items: center; }
            .newsletter input { border-radius: 4px; max-width: 100%; margin-bottom: 10px; }
            .newsletter button { border-radius: 4px; width: 100%; }
            .lang-selector { display: none; } /* Mobile માં જગ્યા બચાવવા હાઇડ કર્યું છે */
        }


.language-selector{
position:relative;
display:inline-block;
}

.lang-btn{
color:white;
cursor:pointer;
font-weight:500;
padding:5px 10px;
}

.lang-dropdown{
display:none;
position:absolute;
right:0;
top:35px;
background:white;
width:220px;
padding:15px;
border-radius:6px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
z-index:999;
}

.lang-dropdown label{
display:block;
font-size:14px;
margin:8px 0;
cursor:pointer;
}

.lang-dropdown input{
margin-right:8px;
}
.colorb{color: black;}
.p20{padding: 20px;}
.nav-pills .nav-link, .nav-pills .show>.nav-link{
color: black !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    color: var(--brand-orange) !important;
    border-bottom: 1px solid !important;
    background: none !important;
}
.col-red{color: red;}
.pt5{padding-top: 5px;}
.fnone{display: none !important;}


.loadingHolder{
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0px;
    z-index: 98;
    text-align: center;
}

.loader{
    margin-top: 30vh;
    border-radius: 4px;
    display: inline-block;
    padding: 20px;
    font-weight: 600;
}

.loader img{
    width: 100%;
    margin-bottom: 10px;
}
