          @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

        :root {
            --primary-dark: #0a0a0a;
            --secondary-dark: #1a1a1a;
            --accent-gold: #d4af37;
            --accent-light: #f8f6f0;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-gold: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-dark: linear-gradient(135deg, #0c0c0c 0%, #2d2d2d 100%);
            --footer-light: #212529  ;
            --footer-text:#dee2e6 ;
            --footer-border:#212529 ;
        }

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

        body {
            font-family: 'Poppins', 'Tajawal', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        body.loaded {
            opacity: 1;
        }

        /* Sleeper Effect Overlay */
        .sleeper-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-gold);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .sleeper-overlay.hidden {
            transform: translateY(-100%);
        }

        .luxe-logo {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            color: var(--primary-dark);
            position: relative;
        }

        .luxe-logo::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-dark);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.8s ease;
        }

        .sleeper-overlay.animate .luxe-logo::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        .hero-section {
            height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%), url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?q=80&w=2674&auto=format&fit=crop') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
        }

        .hero-section.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
        }

        .hero-title.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--text-muted);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
        }

        .hero-subtitle.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        /* Buttons */
        .btn-luxury {
            background: var(--gradient-gold);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 1.4s, transform 0.8s ease 1.4s, all 0.3s ease;
        }

        .btn-luxury.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-luxury::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;
            z-index: 1;
        }

        .btn-luxury:hover::before {
            left: 100%;
        }

        .btn-luxury:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245, 87, 108, 0.4);
        }

        /* Admin Button Styling */
        .add-product-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-gold);
            color: var(--text-light);
            border: none;
            border-radius: 50px;
            padding: 15px 25px;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.8s ease 2s, all 0.3s ease;
        }

        .add-product-btn.loaded {
            opacity: 1;
        }

        .add-product-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
        }

        .add-product-btn i {
            font-size: 1.2rem;
        }

        /* Featured Products */
        .featured-products {
            background: var(--secondary-dark);
            padding: 100px 0;
            position: relative;
            opacity: 0;
            transition: opacity 1s ease 1.6s;
        }

        .featured-products.loaded {
            opacity: 1;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 1.8s, transform 0.8s ease 1.8s;
        }

        .section-title.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            filter: blur(.5px);
            position: relative;
            height: 100%;
            opacity: 0;
            transform: translateY(20px);
        }

        .product-card.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-gold);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .product-card:hover::before {
            opacity: 0.1;
        }

        .product-card:hover {
            transform: translateY(-20px) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border-color: var(--accent-gold);
        }

        .product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-info {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .product-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .testimonials {
            background: var(--gradient-dark);
            padding: 100px 0;
            position: relative;
            opacity: 0;
            transition: opacity 1s ease 2s;
        }

        .testimonials.loaded {
            opacity: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            filter: blur(.5px);
            transition: all 0.3s ease;
            height: 100%;
            opacity: 0;
            transform: translateY(20px);
        }

        .testimonial-card.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--text-muted);
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--accent-gold);
        }
        .stats-section {
            background: var(--primary-dark);
            padding: 80px 0;
            opacity: 0;
            transition: opacity 1s ease 2.2s;
        }

        .stats-section.loaded {
            opacity: 1;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-item.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(20px) rotate(240deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .luxe-logo {
                font-size: 3rem;
            }
            
            .footer [class*="col-"] {
                margin-bottom: 30px;
            }
        }

        .glow-effect {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        .text-glow {
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }
        .user-info {
            display: flex;
            align-items: center;
            margin-right: 15px;
            color: var(--accent-gold);
        }

        .user-info i {
            margin-right: 5px;
        }
        
        .product-card:nth-child(1) {
            transition: opacity 0.6s ease 2s, transform 0.6s ease 2s !important;
        }
        
        .product-card:nth-child(2) {
            transition: opacity 0.6s ease 2.1s, transform 0.6s ease 2.1s !important;
        }
        
        .product-card:nth-child(3) {
            transition: opacity 0.6s ease 2.2s, transform 0.6s ease 2.2s !important;
        }
        
        .stat-item:nth-child(1) {
            transition: opacity 0.6s ease 2.3s, transform 0.6s ease 2.3s !important;
        }
        
        .stat-item:nth-child(2) {
            transition: opacity 0.6s ease 2.4s, transform 0.6s ease 2.4s !important;
        }
        
        .stat-item:nth-child(3) {
            transition: opacity 0.6s ease 2.5s, transform 0.6s ease 2.5s !important;
        }
        
        .stat-item:nth-child(4) {
            transition: opacity 0.6s ease 2.6s, transform 0.6s ease 2.6s !important;
        }
        
        .testimonial-card:nth-child(1) {
            transition: opacity 0.6s ease 2.7s, transform 0.6s ease 2.7s !important;
        }
        
        .testimonial-card:nth-child(2) {
            transition: opacity 0.6s ease 2.8s, transform 0.6s ease 2.8s !important;
        }
        
        .testimonial-card:nth-child(3) {
            transition: opacity 0.6s ease 2.9s, transform 0.6s ease 2.9s !important;
        }
        .swiper-section {
            background: var(--gradient-dark);
            padding: 100px 0;
            position: relative;
            opacity: 0;
            transition: opacity 1s ease 2.1s;
        }

        .swiper-section.loaded {
            opacity: 1;
        }

        .swiper {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 20px;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .swiper-slide:hover img {
            transform: scale(1.1);
        }

        .swiper-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--text-light);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .swiper-slide:hover .swiper-slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .swiper-slide-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }

        .swiper-slide-description {
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .swiper-button-next, 
        .swiper-button-prev {
            color: var(--accent-gold) !important;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .swiper-button-next:after, 
        .swiper-button-prev:after {
            font-size: 1.5rem !important;
            font-weight: bold;
        }

        .swiper-button-next:hover, 
        .swiper-button-prev:hover {
            background: var(--accent-gold);
            color: var(--primary-dark) !important;
        }

        .swiper-pagination-bullet {
            background: var(--text-muted);
            opacity: 0.7;
            width: 12px;
            height: 12px;
        }

        .swiper-pagination-bullet-active {
            background: var(--accent-gold);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .swiper {
                height: 350px;
            }
            
            .swiper-slide-title {
                font-size: 1.5rem;
            }
            
            .swiper-button-next, 
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
        }
