        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
        }

        header {
            background-color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 40px;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo img {
            height: 45px;
        }

        .logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-text {
            font-weight: bold;
            font-size: 20px;
            display: flex;
        }

        .logo-text-big {
            color: #e63946;
        }

        .logo-text-basket {
            color: #000;
        }

        .logo-enterprise {
            background: none;
            color: #666;
            padding: 0;
            border-radius: 0;
            font-size: 12px;
            margin-top: 2px;
            display: flex;
            gap: 6px;
            align-items: baseline;
        }

        .logo-enterprise .tata {
            color: #0b72e3;
            font-weight: 700;
        }

        .logo-enterprise .enterprise {
            color: #0b72e3;
            font-weight: 600;
        }

        .search-bar {
            flex: 1;
            max-width: 650px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 45px 12px 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #84c225;
            font-size: 18px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .delivery-info {
            text-align: right;
        }

        .delivery-info p {
            font-size: 12px;
            color: #84c225;
            font-weight: 600;
        }

        .delivery-info span {
            font-size: 13px;
            color: #666;
        }

        .login-btn {
            background-color: #222;
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
        }

        .cart-icon {
            background-color: #e63946;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        nav {
            background-color: white;
            border-top: 1px solid #eee;
        }

        .nav-container {
            display: flex;
            align-items: center;
            padding: 0 40px;
            gap: 30px;
        }

        .category-dropdown {
            position: relative;
        }

        .category-btn {
            background-color: #84c225;
            color: white;
            padding: 15px 30px;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            width: 900px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .category-dropdown:hover .dropdown-content {
            display: flex;
        }

        .dropdown-left {
            width: 280px;
            background-color: #2d2d2d;
            padding: 0;
        }

        .dropdown-left ul {
            list-style: none;
        }

        .dropdown-left li {
            padding: 15px 20px;
            color: white;
            cursor: pointer;
            font-size: 14px;
            border-bottom: 1px solid #3d3d3d;
        }

        .dropdown-left li:hover {
            background-color: #3d3d3d;
        }

        .dropdown-right {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 20px;
            gap: 10px;
        }

        .dropdown-right a {
            text-decoration: none;
            color: #333;
            padding: 10px;
            font-size: 14px;
        }

        .dropdown-right a:hover {
            color: #84c225;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
            flex: 1;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #84c225;
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-icon-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            color: #333;
        }

        .quick-links {
            display: flex;
            gap: 15px;
            padding: 20px 40px;
            overflow-x: auto;
        }

        .quick-link-card {
            background: white;
            padding: 15px 30px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 60px;
        }

        .quick-link-card img {
            max-width: 100%;
            height: auto;
            max-height: 50px;
            object-fit: contain;
        }

        .quick-link-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .section {
            padding: 30px 40px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .section-header h2 {
            font-size: 26px;
            color: #222;
        }

        .section-nav {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .view-all {
            color: #84c225;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
        }

        .nav-arrow {
            width: 35px;
            height: 35px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #84c225;
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 13px;
            z-index: 10;
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: scale-down;
            object-position: center;
            background-color: #f8f8f8;
            padding: 10px;
        }

        .product-info {
            padding: 15px;
        }

        .delivery-time {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #84c225;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .brand-name {
            color: #999;
            font-size: 13px;
            margin-bottom: 5px;
        }

        .product-name {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .product-select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .current-price {
            font-size: 20px;
            font-weight: 700;
            color: #222;
        }

        .original-price {
            font-size: 15px;
            color: #999;
            text-decoration: line-through;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .wishlist-btn {
            width: 45px;
            height: 45px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .add-btn {
            flex: 1;
            background-color: white;
            color: #e63946;
            border: 1px solid #e63946;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
        }

        .add-btn:hover {
            background-color: #e63946;
            color: white;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .offer-card {
            background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
            color: white;
            padding: 40px 30px;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .offer-card:hover {
            transform: translateY(-5px);
        }

        .offer-card h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .offer-card h4 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .offer-card a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .icondo {
            width: 20px;
            height: 20px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .category-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .category-card img {
            width: 100%;
            height: 250px;
            object-fit: contain;
            background: #fff;
            padding: 10px;
        }

        .category-info {
            padding: 15px;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .category-name {
            font-size: 16px;
            color: #666;
            margin-bottom: 5px;
        }

        .category-offer {
            font-size: 18px;
            font-weight: 700;
            color: #e63946;
        }

        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto 40px;
            overflow: hidden;
            border-radius: 12px;
            height: 500px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            animation: slide 20s infinite;
            background: #f8f8f8;
        }

        .slide {
            width: 25%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #f8f8f8;
            padding: 20px;
        }

        @keyframes slide {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-25%); }
            45% { transform: translateX(-25%); }
            50% { transform: translateX(-50%); }
            70% { transform: translateX(-50%); }
            75% { transform: translateX(-75%); }
            95% { transform: translateX(-75%); }
            100% { transform: translateX(0); }
        }

        .slider-container:hover .slider {
            animation-play-state: paused;
        }

        .about-section {
            background: white;
            padding: 40px;
            margin: 40px;
            border-radius: 8px;
            line-height: 1.8;
        }

        .about-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #222;
        }

        .about-section p {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
        }

        #login-toggle {
            display: none;
        }

        .modal-wrap {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            pointer-events: none;
        }

        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            transition: opacity 220ms ease;
            cursor: pointer;
        }

        .modal {
            width: 820px;
            max-width: calc(100% - 40px);
            background: transparent;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            overflow: hidden;
            display: flex;
            transform: scale(.92);
            opacity: 0;
            transition: all 200ms ease;
            pointer-events: none;
        }

        .modal .left {
            width: 360px;
            background: #fff;
            padding: 40px;
            color: #333;
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: center;
        }

        .modal .left h3 {
            color: #4d4d4d;
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: #666;
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .app-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .app-btn {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: white;
            transition: all 0.2s;
        }

        .app-btn:hover {
            border-color: #84c225;
            transform: translateY(-2px);
        }

        .modal .right {
            flex: 1;
            background: #0f0f0f;
            color: #fff;
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
            position: relative;
        }

        .modal .right h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 700;
        }

        .modal .right .subtitle {
            color: #999;
            font-size: 14px;
            margin-top: -8px;
        }

        .modal .right .login-input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 6px;
            border: none;
            font-size: 15px;
            outline: none;
        }

        .modal .right .continue-btn {
            width: 100%;
            background: #c72a2a;
            color: #fff;
            padding: 14px 18px;
            border-radius: 6px;
            text-align: center;
            font-weight: 700;
            cursor: pointer;
            border: none;
            font-size: 15px;
            transition: background 0.2s;
        }

        .modal .right .continue-btn:hover {
            background: #a82424;
        }

        .modal .right .terms {
            font-size: 11px;
            color: #888;
            line-height: 1.5;
        }

        .modal .right .terms a {
            color: #84c225;
            text-decoration: underline;
        }

        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            background: transparent;
            color: #fff;
            font-size: 32px;
            line-height: 1;
            cursor: pointer;
            border: none;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .login-footer-icon {
            width: 50px;
            height: 50px;
        }

        #login-toggle:checked~.modal-wrap {
            pointer-events: auto;
        }

        #login-toggle:checked~.modal-wrap .modal-overlay {
            opacity: 1;
        }

        #login-toggle:checked~.modal-wrap .modal {
            transform: scale(1);
            opacity: 1;
            pointer-events: auto;
        }

        .login-btn[for="login-toggle"] {
            display: inline-block;
            background-color: #222;
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
            user-select: none;
        }

        footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 40px 40px 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            padding-bottom: 40px;
            border-bottom: 1px dashed #444;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-column ul li a:hover {
            color: #84c225;
        }

        .footer-logo-text {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo-bb {
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-bb img {
            width: 40px;
            height: 40px;
        }

        .footer-brand-text {
            display: flex;
            flex-direction: column;
        }

        .footer-brand-name {
            font-size: 24px;
            font-weight: 700;
        }

        .footer-brand-name .bb-red {
            color: #e63946;
        }

        .footer-tata {
            font-size: 12px;
            color: #999;
        }

        .footer-tata .tata-blue {
            color: #0b72e3;
            font-weight: 700;
        }

        .footer-tata .enterprise-blue {
            color: #0b72e3;
            font-weight: 600;
        }

        .app-download {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .app-download img {
            height: 45px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .app-download img:hover {
            transform: translateY(-2px);
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            color: #fff;
            font-size: 24px;
            transition: color 0.2s;
        }

        .social-links a:hover {
            color: #84c225;
        }

        .cities-section {
            margin-bottom: 30px;
        }

        .cities-section h3 {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .cities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 15px;
            line-height: 1.8;
            font-size: 13px;
            color: #ccc;
        }

        .cities-list span {
            white-space: nowrap;
        }

        .cities-list span::after {
            content: "|";
            margin-left: 15px;
            color: #555;
        }

        .cities-list span:last-child::after {
            content: "";
        }

        .cities-list a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s;
        }

        .cities-list a:hover {
            color: #84c225;
        }

        .popular-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding-bottom: 30px;
            border-bottom: 1px dashed #444;
            margin-bottom: 30px;
        }

        .popular-categories,
        .popular-brands {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 22px;
        }

        .popular-categories a,
        .popular-brands a {
            color: #ccc;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }

        .popular-categories a:hover,
        .popular-brands a:hover {
            color: #84c225;
        }

        .show-more-cities {
            color: #84c225;
            font-size: 13px;
            cursor: pointer;
            margin-top: 15px;
            display: inline-block;
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            color: #999;
            font-size: 13px;
        }

        @media (max-width: 1024px) {
            .header-top,
            .nav-container,
            .section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }

            .dropdown-content {
                width: 700px;
            }
        }

        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
                margin: 0 auto 30px;
            }

            .header-top {
                flex-wrap: wrap;
            }

            .search-bar {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
            }

            .nav-links {
                overflow-x: auto;
                padding: 10px 0;
            }

            .category-grid,
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }

            .dropdown-content {
                width: 100vw;
                left: -20px;
            }

            .dropdown-left {
                width: 200px;
            }

            .quick-links {
                padding: 15px 20px;
                gap: 10px;
            }

            .quick-link-card {
                padding: 10px 20px;
                font-size: 13px;
                min-height: 50px;
            }

            .quick-link-card img {
                max-height: 40px;
            }

            footer {
                padding: 30px 20px 15px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .popular-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .popular-categories,
            .popular-brands {
                grid-template-columns: repeat(2, 1fr);
            }

            .modal {
                width: 92%;
                flex-direction: column;
            }

            .modal .left {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 20px;
            }

            .product-grid,
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 10px;
            }

            .product-image {
                height: 180px;
            }

            .offer-grid {
                grid-template-columns: 1fr;
            }

            .quick-links {
                padding: 10px 15px;
                gap: 8px;
            }

            .quick-link-card {
                padding: 8px 15px;
                font-size: 11px;
                min-height: 45px;
            }

            .quick-link-card img {
                max-height: 35px;
            }
        }