﻿        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #222;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav ul li a {
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #0070f3;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 4px 0;
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                gap: 1rem;
                background: white;
                position: absolute;
                top: 70px;
                right: 1rem;
                padding: 1rem;
                box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            }

            nav ul.show {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
        }

        /* Banner */
        .banner {
            position: relative;
            background: url('https://www.airwheel.net/images/se3sx/airwheel_se3sx_scooter_suitcase.jpg') center/cover no-repeat;
            height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        .banner h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .banner p {
            font-size: 1.2rem;
            text-shadow: 0 3px 6px rgba(0,0,0,0.5);
        }

        /* Products Section */
        .products {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
        }

        .products h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        /* Featured Product 1: Full-width, dark background */
        .featured-product-1 {
            display: flex;
            flex-direction: row;
            background: #1e1e1e;
            color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .featured-product-1 .featured-image img {
            width: 50%;
            height: 100%;
            object-fit: cover;
        }

        .featured-product-1 .featured-info {
            padding: 2rem;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Featured Product 2: Split layout, light background */
        .featured-product-2 {
            display: flex;
            flex-direction: row-reverse;
            background: #f0f7ff;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding:2%;
        }

        .featured-product-2 .featured-image img {
            width: 95%;
            height: 100%;
            object-fit: cover;
        }

        .featured-product-2 .featured-info {
            padding: 2rem;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #222;
        }

        /* Remaining Products Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .product img {
            width: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 1rem;
        }

        .product-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .product-info p {
            font-size: 0.95rem;
            color: #666;
        }

        /* News Section */
        .news {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
        }

        .news h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .news-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .news-item img {
            width: 100%;
    /*        height: 150px;*/
            object-fit: cover;
        }

        .news-item h4 {
            padding: 0.5rem 1rem;
            font-size: 1rem;
        }

        .news-item p {
            padding: 0 1rem 1rem 1rem;
            font-size: 0.9rem;
            color: #666;
        }

        /* Footer */
        footer {
            background: #222;
            color: #fff;
            padding: 2rem 1rem;
        }

        footer .footer-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        footer div {
            margin-bottom: 1rem;
            flex: 1 1 200px;
        }

        footer h4 {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        footer a {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #fff;
        }

        /* Button */
        .btn {
            display: inline-block;
            background: #0070f3;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            margin-top: 0.5rem;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #005bcc;
        }

        /* Responsive adjustments for featured products */
        @media (max-width: 768px) {
            .featured-product-1, .featured-product-2 {
                flex-direction: column;
            }

            .featured-product-1 .featured-image img,
            .featured-product-2 .featured-image img {
                width: 100%;
                height: 250px;
            }

            .featured-product-1 .featured-info,
            .featured-product-2 .featured-info {
                width: 100%;
                padding: 1rem;
            }
        }