
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #1a1a1a;
            font-weight: 400;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(253, 126, 20, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 30px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .logo h1 {
            color: #fd7e14;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            letter-spacing: -0.02em;
        }

        nav {
            position: relative;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.01em;
        }

        nav a:hover {
            color: #fd7e14;
        }

        .shop-btn {
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            color: white !important;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.01em;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .shop-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
            color: white !important;
        }

        /* Mobile Menu Icon */
        .menu-icon {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            z-index: 1001;
        }

        .menu-icon .bar {
            width: 25px;
            height: 3px;
            background-color: #fff;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Animate hamburger to X */
        .menu-icon.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-icon.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-icon.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 1.2rem;
            }

            .menu-icon {
                display: flex;
            }

            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                width: 100%;
                background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
                flex-direction: column;
                gap: 0;
                padding: 1.5rem 0;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

            .nav-list.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-list li {
                margin: 0;
                width: 100%;
                text-align: center;
            }

            .nav-list a {
                display: block;
                padding: 18px 20px;
                font-size: 1.2rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                transition: background-color 0.3s;
                width: 100%;
            }

            .nav-list a:hover {
                background-color: rgba(253, 126, 20, 0.1);
            }

            .nav-list .shop-btn {
                margin: 15px 15px;
                text-align: center;
                border-bottom: none;
                border-radius: 25px;
                padding: 15px 30px;
                font-size: 1.1rem;
                display: inline-block;
                width: calc(100% - 30px);
                box-sizing: border-box;
            }
        }

        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .nav-list {
                top: 65px;
                padding: 1.2rem 0;
            }

            .nav-list a {
                padding: 16px 15px;
                font-size: 1.1rem;
            }

            .nav-list .shop-btn {
                margin: 12px 10px;
                padding: 12px 25px;
                width: calc(100% - 20px);
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            padding: 120px 0 80px;
            text-align: center;
            color: white;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #212529;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            height: 300px;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            border-radius: 15px;
            margin: 2rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
        }

        /* Sections */
        section {
            padding: 60px 0;
            background: #f8f9fa;
            color: #333;
        }

        section:nth-child(even) {
            background: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c2c2c;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            margin: 10px auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Featured Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(253, 126, 20, 0.2);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .product-card h3 {
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            letter-spacing: -0.01em;
        }

        .product-card p {
            color: #666;
            margin-bottom: 1.5rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
        }

        .view-details-btn {
            background: transparent;
            color: #fd7e14;
            border: 2px solid #fd7e14;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            letter-spacing: 0.01em;
        }

        .view-details-btn:hover {
            background: #fd7e14;
            color: white;
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            letter-spacing: -0.01em;
        }

        .feature-card p {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            color: #666;
        }

        /* Call to Action */
        .cta {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fd7e14;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ccc;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-form {
            max-width: 500px;
            margin: 2rem auto;
            display: grid;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            border: 1px solid #555;
            border-radius: 8px;
            background: #333;
            color: white;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #aaa;
        }

        .submit-btn {
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.01em;
            transition: transform 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            color: #fd7e14;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #fd7e14;
        }

        .footer-section.contact-info {
            grid-column: span 2;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
        }

        /* Additional Mobile Responsive */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-section.contact-info {
                grid-column: span 1;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .product-card {
                padding: 1rem;
            }
        }