/* <style> */
    
         /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: white;
            z-index: 1002;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .logo-img {
            height: 42px;
            margin-right: 12px;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
        }
        
        .logo span {
            color: #FFD700;
        }
        
        .desktop-nav ul {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        .desktop-nav li {
            position: relative;
            margin: 0 12px;
        }
        
        .desktop-nav a {
            padding: 10px 0;
            position: relative;
            font-weight: 600;
            display: flex;
            align-items: center;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .desktop-nav a:hover {
            color: #FFD700;
            transform: translateY(-2px);
        }
        
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .desktop-nav a:hover:after {
            width: 100%;
        }
        
        /* Updated Dropdown Menu Styles - Two Columns */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: white;
            width: auto;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
            overflow: hidden;
            padding: 0;
        }
        
        .dropdown-columns {
            display: flex;
            padding: 25px;
            gap: 30px;
        }
        
        .dropdown-column {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .dropdown-column h4 {
            padding: 0 0 15px;
            margin: 0 0 15px;
            font-size: 16px;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .dropdown-column h4 i {
            margin-right: 10px;
            color: #3498db;
            font-size: 18px;
        }
        
        .dropdown-column li a img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            vertical-align: middle;
            margin-right: 8px;
        }
        
        .dropdown li {
            margin: 0;
            width: 100%;
        }
        
        .dropdown a {
            padding: 12px 15px;
            display: flex;
            align-items: center;
            color: #555;
            transition: all 0.2s ease;
            border-radius: 6px;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .dropdown a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            font-size: 16px;
            transition: transform 0.2s ease;
        }
        
        .dropdown a:hover {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
        }
        
        .dropdown a:hover i {
            transform: scale(1.2);
        }
        
        .desktop-nav li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(5px);
        }
        
        .desktop-nav a i.fa-chevron-down {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .desktop-nav li:hover a i.fa-chevron-down {
            transform: rotate(180deg);
        }
        
        .search-bar {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 5px;
            backdrop-filter: blur(5px);
        }
        
        .search-bar input {
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            width: 220px;
            background: transparent;
            color: white;
            outline: none;
        }
        
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-bar button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-bar button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
            color: white;
        }
        
        /* Mobile Menu (Drawer) */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: white;
            z-index: 1001;
            transition: right 0.3s ease;
            padding: 70px 20px 20px;
            overflow-y: auto;
        }
        
        .mobile-menu.open {
            right: 0;
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        
        .mobile-nav li {
            margin: 20px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }
        
        .mobile-nav ul li a img {
            /* margin: 20px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px; */
            width: 20px;
            height: 20px;
            object-fit: contain;
            vertical-align: middle;
            margin-right: 8px;
        }
        
        .mobile-dropdown-content {
            display: none;
            padding-left: 15px;
            margin-top: 10px;
        }
        
        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }
        
        .mobile-dropdown-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .mobile-dropdown-trigger i {
            transition: transform 0.3s;
        }
        
        .mobile-dropdown.active .mobile-dropdown-trigger i {
            transform: rotate(180deg);
        }
        
        .mobile-search {
            margin: 20px 0;
            display: flex;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            overflow: hidden;
        }
        
        .mobile-search input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: transparent;
            color: white;
            outline: none;
        }
        
        .mobile-search input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .mobile-search button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 12px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-search button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .search-bar input {
                width: 150px;
            }
        }
        
        @media (max-width: 868px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-container {
                padding: 12px 0;
            }
        }
        
        @media (max-width: 768px) {
            .search-bar {
                display: none;
            }
            
            .logo {
                font-size: 20px;
            }
        }
        
        /* Slider Styles */
        .slider {
            position: relative;
            margin: 30px 0;
            overflow: hidden;
            border-radius: 8px;
            height: 400px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 50px;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            max-width: 500px;
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 8px;
        }
        
        .slide h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .slide p {
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .btn:hover {
            background: #2980b9;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slider-control {
            background: rgba(255, 255, 255, 0.7);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-control.active {
            background: #3498db;
        }
        
        .prev-btn, .next-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            border: none;
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        /* Categories Section */
        .section-title {
            font-size: 24px;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: inline-block;
        }
        
        .mobile-categories {
            display: flex;
            overflow-x: auto;
            padding: 10px 0;
            margin-bottom: 30px;
            scrollbar-width: thin;
            -ms-overflow-style: none;
        }
        
        .mobile-categories::-webkit-scrollbar {
            height: 5px;
        }
        
        .mobile-categories::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }
        
        .category {
            min-width: 150px;
            height: 100px;
            background: white;
            margin-right: 15px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
        }
        
        .category:hover {
            transform: translateY(-5px);
        }
        
        .category i {
            font-size: 24px;
            margin-bottom: 10px;
            color: #3498db;
        }
        
        /* Product Grids */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(7, 3fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        @media (min-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 200px;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            height: 200px;
            
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            /* background-color: #0780f9; */
        }

        .product-image img {
            width: 200px;

        }
        
        .product-info {
            padding: 15px;
            margin-top: 60px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            text-align: center;
            font-weight: 600;
            margin-bottom: 10px;
            min-height: 50px;
            font-size: 16px;
        }
        
        .product-price {
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .buy-btn {
            margin-top: auto;
            background: #e74c3c;
            color: white;
            text-align: center;
            padding: 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .buy-btn:hover {
            background: #532bc0;
        }
        
        .view-all {
            text-align: center;
            margin-top: 15px;
        }
        
        /* Main Content Layout */
        .main-content {
            display: flex;
            margin: 40px 0;
        }
        
        .sidebar {
            width: 150px;
            padding-right: 20px;
            flex-shrink: 0;
        }
        
        .brands-list li {
            margin-bottom: 10px;
            padding: 8px 10px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .brands-list li.active {
            background: #3498db;
            color: white;
        }
        
        .content-area {
            flex-grow: 1;
        }
        
        .brand-section {
            margin-bottom: 20px;
            /* background-color: #0780f9; */
        }
        
        .brand-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .brand-title {
            font-size: 22px;
            font-weight: 700;
        }
        
        /* Ad Styles */
        .ad-banner {
            background: #f1f2f6;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
        }
        
        .ad-banner.long {
            height: 120px;
        }
        
        .ad-banner.small {
            height: 200px;
            margin-bottom: 20px;
        }
        
        .ad-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Footer Styles */
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #4a6580;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #4a6580;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #4a6580;
            color: #95a5a6;
        }
        
        /* Responsive Styles for Header */
        @media (max-width: 992px) {
            .sidebar {
                display: none;
            }
            
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .search-bar input {
                width: 150px;
            }
        }
        
        @media (max-width: 868px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-container {
                padding: 12px 0;
            }
        }
        
        /* UPDATED: Horizontal scrolling for product sections on small screens */



        @media (max-width: 768px) {
            .search-bar {
                display: none;
            }
        
            /* Horizontal scrolling for product grids */
            .product-grid {
                display: flex;
                overflow-x: auto;
                /* <!-- scroll-snap-type: x mandatory; --> */
                gap: 15px;
                padding: 10px 0;
                margin-bottom: 20px;
                scrollbar-width: thin;
                -ms-overflow-style: none;
                grid-template-columns: unset;
            }
            
            .product-grid::-webkit-scrollbar {
                height: 6px;
            }
            
            .product-grid::-webkit-scrollbar-thumb {
                background: #3498db;
                border-radius: 10px;
            }
            
            .product-grid::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 10px;
            }
            
            .product-card {
                min-width: 200px;
                scroll-snap-align: start;
                flex-shrink: 0;
            }
            
            .slide-content {
                max-width: 100%;
            }
            
            .slide h2 {
                font-size: 24px;
            }
            
            .logo {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .ad-container {
                grid-template-columns: 1fr;
            }
            
            .slider {
                height: 300px;
            }
            
            .slide {
                padding: 0 20px;
            }
            
            .slide-content {
                padding: 15px;
            }
            
            .prev-btn, .next-btn {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
            
            /* Adjust product card width for very small screens */
            .product-card {
                min-width: 160px;
            }
        }
        
        @media (max-width: 400px) {
            .mobile-menu {
                width: 280px;
            }
            
            .logo {
                font-size: 18px;
            }
            
            /* Further adjust product card width for extra small screens */
            .product-card {
                min-width: 160px;
            }
        }
    
    /* </style> */