
        * {
            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);
            }
        }




        /* Slider Section */
        .slider-section {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            /* padding: 80px 0 0; */
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 700px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transform: scale(1.05);
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide.prev {
            transform: translateX(-100%) scale(0.95);
        }

        .slide.next {
            transform: translateX(100%) scale(0.95);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(253, 126, 20, 0.85) 0%, rgba(255, 159, 64, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 60px;
            backdrop-filter: blur(2px);
        }

        .slide-content {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h2 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
            letter-spacing: -0.02em;
            animation: slideInUp 0.8s ease forwards;
        }

        .slide-content p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            max-width: 700px;
            font-weight: 400;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            line-height: 1.7;
            animation: slideInUp 0.8s ease 0.2s forwards;
            opacity: 0;
            text-align: center; /* This will center-align the text */
            margin-left: auto;  /* To center the block-level element horizontally */
            margin-right: auto; /* To center the block-level element horizontally */
        }


        .slide-btn {
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
            color: #fd7e14 !important;
            padding: 18px 45px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            backdrop-filter: blur(20px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: slideInUp 0.8s ease 0.4s forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .slide-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .slide-btn:hover::before {
            left: 100%;
        }

        .slide-btn:hover {
            background: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: #fd7e14;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border: 2px solid rgba(255, 255, 255, 0.2);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 28px;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            font-weight: bold;
        }

        .slider-nav:hover {
            background: linear-gradient(45deg, rgba(253, 126, 20, 0.9), rgba(255, 159, 64, 0.8));
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 15px 40px rgba(253, 126, 20, 0.4);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .prev {
            left: 40px;
        }

        .next {
            right: 40px;
        }

        /* Slide Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 100;
        }

        .indicator {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .indicator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .indicator.active {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.3);
            border-color: #fd7e14;
            box-shadow: 0 0 20px rgba(253, 126, 20, 0.6);
        }

        .indicator.active::before {
            width: 8px;
            height: 8px;
        }

        .indicator:hover {
            transform: scale(1.2);
            background: rgba(255, 255, 255, 0.7);
        }

        /* 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;
            }

            .slider-container {
                height: 500px;
                
            }

            .slide-content h2 {
                font-size: 2.5rem;
            }

            .slide-content p {
                font-size: 1.1rem;
            }

            .slider-nav {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .prev {
                left: 20px;
            }

            .next {
                right: 20px;
            }
        }

        @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);
            }

            .slider-container {
                height: 400px;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .slide-overlay {
                padding: 20px;
            }

            .slider-nav {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .prev {
                left: 15px;
            }

            .next {
                right: 15px;
            }
        }
        
        
        /* 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;
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }
        
        .products-carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 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;
            flex: 0 0 calc(25% - 1.5rem);
            min-width: 250px;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(253, 126, 20, 0.2);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-card h3 {
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            letter-spacing: -0.01em;
        }
        
        /* Carousel Navigation Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(253, 126, 20, 0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .dot.active {
            background: #fd7e14;
        }
        
        /* New How to Order Section */
        #how-to-order {
            background: linear-gradient(135deg, #fd7e14 0%, #ffffff 100%);
            color: #2c2c2c;
        }
        
        .order-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: stretch;
        }
        
        .step-item {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(253, 126, 20, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .step-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 20px 40px rgba(253, 126, 20, 0.2);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #fd7e14, #ff9f40);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
        }
        
        .step-icon {
            font-size: 3rem;
            margin: 1rem 0;
            opacity: 0.9;
        }
        
        .step-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }
        
        @media (max-width: 1200px) {
            .product-card {
                flex: 0 0 calc(33.333% - 1.33rem);
            }
        }
        
        @media (max-width: 900px) {
            .product-card {
                flex: 0 0 calc(50% - 1rem);
            }
        }
        
        @media (max-width: 600px) {
            .product-card {
                flex: 0 0 calc(100% - 0rem);
            }
            
            .order-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step-item {
                max-width: 100%;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        /* 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;
            }
        }