 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       

:root {
            --primary: #ff3b0a;
            --primary-dark: #f26507;
            --secondary: #213250;
            --background: #ffffff;
            --text: #0f172a;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --white: #ffffff;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--white);
            overflow-x: hidden;
        }

        /* MODERN HEADER */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            height: 80px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* NAVIGATION */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 0.25rem;
        }

        .nav-link:hover,
        .nav-item:hover > .nav-link {
            color: var(--primary);
            background: var(--gray-50);
        }

        /* DROPDOWN MENU */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 300px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-200);
            padding: 1rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            display: block;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-category {
            position: relative;
            display: block;
            margin-bottom: 0;
        }

        .dropdown-category > a {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: block;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid var(--gray-100);
        }

        .dropdown-category > a:hover {
            background: var(--gray-50);
            color: var(--primary-dark);
            padding-left: 2rem;
        }

        .sub-dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            background: var(--white);
            min-width: 300px;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--gray-200);
            padding: 1rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 110;
            max-height: 400px;
            overflow-y: auto;
        }

        .dropdown-category:hover .sub-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .sub-dropdown a {
            display: block;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 0.5rem 1.5rem;
            transition: all 0.2s ease;
            position: relative;
        }

        .sub-dropdown a:hover {
            color: var(--primary);
            background: var(--gray-50);
            padding-left: 2rem;
        }

        .sub-dropdown a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 0;
            background: var(--primary);
            transition: height 0.2s ease;
        }

        .sub-dropdown a:hover::before {
            height: 60%;
        }

        .new-badge {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            font-size: 0.65rem;
            padding: 0.15rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            margin-left: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* HEADER CTA */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .cart-button {
            background: none;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .cart-button:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .account-dropdown {
            position: relative;
            display: inline-block;
            margin-right: 0;
        }

        .account-button {
            background: none;
            border: 2px solid var(--gray-600);
            color: var(--gray-600);
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .account-button:hover {
            background: var(--gray-600);
            color: white;
            transform: translateY(-2px);
        }

        .account-dropdown-content {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid var(--gray-200);
        }

        .account-dropdown:hover .account-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .account-dropdown-item {
            display: block;
            color: var(--gray-700);
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--gray-100);
        }

        .account-dropdown-item:last-child {
            border-bottom: none;
        }

        .account-dropdown-item:hover {
            background: var(--gray-50);
            color: var(--primary);
            padding-left: 2rem;
        }

        .account-dropdown-item i {
            width: 16px;
            margin-right: 0.5rem;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gray-700);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            background: var(--gray-100);
            color: var(--primary);
        }

        /* SLIDER SECTION */
        .slider {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 500px;
            max-height: 700px;
            overflow: hidden;
            margin-top: 0;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slider-content {
            position: absolute;
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            color: white;
            z-index: 10;
            max-width: 600px;
        }

        .slider-content h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            line-height: 1.1;
        }

        .slider-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            line-height: 1.6;
        }

        .slider-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-slider {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1.25rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-slider:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
        }

        .btn-slider-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1.25rem 2.5rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
        }

        .btn-slider-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 15;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 15;
        }

        .slider-arrows:hover {
            background: var(--primary);
        }

        .slider-prev {
            left: 20px;
        }

        .slider-next {
            right: 20px;
        }

        /* Overlay removed for cleaner mobile view */

        /* FEATURES SECTION */
        .features {
            padding: 5rem 0;
            background: var(--gray-50);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        h1.section-title {
            color: var(--primary);
            text-align: center;
            position: relative;
        }

        h1.section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-100);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* PRODUCTS SECTION */
        .products {
            padding: 5rem 0;
            background: white;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-100);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            height: 200px;
            background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            opacity: 0.8;
        }

        .product-image i {
            font-size: 3rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--success);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 3;
        }

        .product-info {
            padding: 2rem;
        }

        .product-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.75rem;
        }

        .product-description {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .btn-product {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-product:hover {
            transform: scale(1.05);
        }

        /* CTA SECTION */
        .cta {
            background: var(--gray-900);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,107,53,0.1)" cx="200" cy="200" r="100"/><circle fill="rgba(255,107,53,0.05)" cx="800" cy="400" r="150"/><circle fill="rgba(255,107,53,0.08)" cx="400" cy="800" r="120"/></svg>');
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.25rem;
            color: var(--gray-300);
            margin-bottom: 3rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1.25rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
        }

        /* SEO CONTENT SECTION */
        .seo-content {
            padding: 5rem 0;
            background: var(--gray-50);
        }

        .seo-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .seo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .seo-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .seo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .seo-card h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .seo-card h3 {
            color: var(--gray-800);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 1rem 0;
        }

        .seo-card h4 {
            color: var(--primary-dark);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .seo-text p {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .seo-text strong {
            color: var(--gray-800);
            font-weight: 600;
        }

        .price-list, .service-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .price-list li {
            background: var(--gray-50);
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            color: var(--gray-700);
            font-weight: 500;
        }

        .service-list li {
            padding: 0.5rem 0;
            color: var(--gray-700);
            font-weight: 500;
        }

        .curtain-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .curtain-type {
            background: var(--gray-50);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--gray-200);
        }

        .curtain-type h4 {
            margin-bottom: 0.75rem;
        }

        .curtain-type p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* FOOTER */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--primary);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        /* MOBILE MENU STYLES */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--primary) 100%);
            z-index: 9999;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mobile-menu-header .logo {
            color: white;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        .mobile-menu-content {
            padding: 1rem 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-arrow.rotated {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.1);
        }

        .mobile-dropdown-content.active {
            max-height: 1000px;
        }

        .mobile-category {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mobile-category-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-dark);
            text-decoration: none;
            padding: 0.75rem 2rem 0.75rem 3rem;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            cursor: pointer;
        }

        .mobile-category-arrow {
            transition: transform 0.3s ease;
        }

        .mobile-category-arrow.rotated {
            transform: rotate(180deg);
        }

        .mobile-category-items {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-category-items.active {
            max-height: 500px;
        }

        .mobile-sub-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            padding: 0.5rem 2rem 0.5rem 4rem;
            font-size: 0.9rem;
        }

        .mobile-sub-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* CAMPAIGN COUNTDOWN BANNER */
        .campaign-banner {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
            padding: 20px;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 10;
            animation: campaignPulse 3s ease-in-out infinite;
            margin-top: 80px;
        }

        .campaign-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 4s ease-in-out infinite;
        }

        .campaign-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .campaign-fire {
            font-size: 32px;
            animation: bounce 2s infinite;
            filter: drop-shadow(0 0 10px var(--primary-dark));
        }

        .campaign-text {
            font-size: 22px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .discount-badge {
            background: linear-gradient(45deg, var(--white), var(--primary));
            color: var(--primary);
            font-size: 36px;
            font-weight: 900;
            padding: 10px 20px;
            border-radius: 15px;
            border: 3px solid white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: glow 2s ease-in-out infinite alternate;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .countdown-display {
            background: rgba(0,0,0,0.3);
            padding: 12px 20px;
            border-radius: 30px;
            font-family: 'Courier New', monospace;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 3px;
            border: 2px solid rgba(255,255,255,0.4);
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .countdown-label {
            font-size: 16px;
            font-weight: 700;
            margin-left: 15px;
            animation: pulse-text 2s ease-in-out infinite;
        }

        @keyframes campaignPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        @keyframes glow {
            from { 
                box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 20px rgba(255,255,0,0.5);
            }
            to { 
                box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 30px rgba(255,255,0,0.8), 0 0 40px rgba(255,255,0,0.6);
            }
        }

        @keyframes pulse-text {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .account-dropdown {
                margin-right: 0.25rem;
            }

            .account-button {
                font-size: 1rem;
                padding: 0.7rem;
                border-color: var(--primary);
                color: var(--primary);
                margin-right: 0;
            }

            .account-button span {
                display: none;
            }

            .account-button:hover {
                background: var(--primary);
                color: white;
            }

            .cart-button {
                font-size: 1rem;
                padding: 0.4rem;
                margin-right: 0.25rem;
            }

            .mobile-toggle {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            .campaign-banner {
                padding: 15px;
                margin-top: 80px;
            }

            .campaign-content {
                gap: 12px;
            }

            .campaign-fire {
                font-size: 24px;
            }

            .campaign-text {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .discount-badge {
                font-size: 28px;
                padding: 8px 16px;
            }

            .countdown-display {
                font-size: 18px;
                padding: 8px 15px;
                letter-spacing: 2px;
            }

            .countdown-label {
                font-size: 14px;
                margin-left: 10px;
            }

            .slider {
                height: 130px;
                min-height: 130px;
                max-height: 130px;
                margin-top: 0;
            }

            .slider-content {
                left: 15px;
                right: 15px;
                max-width: none;
                top: 50%;
                transform: translateY(-50%);
            }

            .slider-content h1 {
                font-size: 1.2rem;
                margin-bottom: 0.3rem;
                line-height: 1.2;
                text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            }

            .slider-content p {
                font-size: 0.8rem;
                margin-bottom: 0.5rem;
                line-height: 1.3;
                text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            }

            .slider-cta {
                display: none; /* Hide CTA buttons on mobile due to space constraints */
            }

            .btn-slider,
            .btn-slider-secondary {
                display: none; /* Hide buttons on mobile */
            }

            .slider-arrows {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }

            .slider-prev {
                left: 10px;
            }

            .slider-next {
                right: 10px;
            }

            .features-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            .dropdown-content {
                min-width: 300px;
                left: 0;
                flex-direction: column;
            }

            .dropdown-category {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .sub-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                padding: 0.5rem 0 0 1rem;
                margin-top: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 1rem;
            }

            .hero {
                padding: 6rem 0 3rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .btn-cta-primary {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .seo-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .seo-card {
                padding: 2rem;
            }

            .curtain-types {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }