* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           font-family: "Montserrat", sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: #ff9f43;
        }

        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
        }

        .user-actions a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-size: 18px;
            transition: color 0.3s;
        }

        .user-actions a:hover {
            color: #ff9f43;
        }

        /* Navigation */
        nav {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
        }

        .nav-links li {
            padding: 15px 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            padding: 15px 20px;
            font-weight: bold;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://img.pikbest.com/ai/illus_our/20230427/a11998d5f06c156aa0c72408d535d43a.jpg!w700wp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 40px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn {
            display: inline-block;
            background:blue;
            color: white;
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition:  0.3s;
        }

        .btn:hover {
            background: #ff7f00;
        }

        /* Products Section */
        .section-title {
            text-align: center;
            margin: 40px 0 30px;
            font-size: 32px;
            color: #2c3e50;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #3498db;
            margin: 10px auto;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .product {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .product:hover {
            transform: translateY(-5px);
        }
        .product a{
            text-decoration: none;
        }

        .product img {
            width: 90%;
            height: 200px;
            object-fit: contain;
            margin: 10px;
            object-fit: cover;
        }

        .product-content {
            padding: 20px;
        }

        .product h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .product p {
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .product .price {
            font-size: 22px;
            font-weight: 700;
            color: #3498db;
            display: block;
            margin-bottom: 15px;
        }

        /* Brands Section */
        .brands {
            background: white;
            padding: 40px 0;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .brand-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
        }

        .brand-logos div {
            font-size: 32px;
            font-weight: 700;
            color: #3498db;
            padding: 15px 30px;
            border: 2px solid #f1f1f1;
            border-radius: 10px;
            margin: 10px;
            transition: all 0.3s;
        }

        .brand-logos div:hover {
            transform: scale(1.05);
            border-color: #3498db;
        }

        /* Super Offer Section */
        .super-offer {
            background: linear-gradient(to right, #ff9f43, #ff7f00);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: 10px;
        }

        .super-offer h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .super-offer p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .countdown div {
            background: rgba(0, 0, 0, 0.00);
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 28px;
            font-weight: 700;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 22px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #3498db;
        }

        .footer-section p {
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #3498db;
        }

        .socials a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #34495e;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: background 0.3s;
        }

        .socials a:hover {
            background: #3498db;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            
            .search-bar {
                margin: 20px 0;
                max-width: 100%;
            }
            
            .nav-links {
                flex-wrap: wrap;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .countdown {
                flex-wrap: wrap;
            }
        }