
        :root {
            --primary: #1a1a1a;
            --secondary: #f8f8f8;
            --accent: #ffc400;
            --text: #333;
            --light-text: #777;
            --border: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            color: var(--text);
            background-color: #000000;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        

        
       
        


.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 90%;
    padding: 20px;
}

.hero-content .shiny-text {
    font-size: 62px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content .sub-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content .shiny-text {
        font-size: 42px;
    }
    .hero-content .sub-text {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-explore {
        width: 200px;
    }
}


        .hero h1 {
            font-size: 56px;
            font-weight: 300;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .hero h1 strong {
            font-weight: 700;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.9;
        }
        



        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: var(--primary);
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: #c1a033;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        /* Featured Products */
        .featured {
            padding: 80px 0;
        }
        .collection-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .collection-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Important: Makes the image fill without distortion */
            display: block;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .section-title p {
            color: var(--light-text);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 300px;
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent);
            color: var(--primary);
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 3px;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-name {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .product-category {
            color: var(--light-text);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .product-price {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .add-to-cart {
            padding: 8px 15px;
            font-size: 14px;
        }
        
        .wishlist {
            color: var(--light-text);
            font-size: 20px;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .wishlist:hover {
            color: crimson;
        }
        
        /* Collection Section */
        .collections {
            padding: 80px 0;
            background-color: black;
        }
        
        .collection-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .collection-card {
            position: relative;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            color: white;
        }
        
        .collection-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/600/400') center/cover;
            z-index: 1;
            transition: transform 0.5s;
        }
        
        .collection-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            z-index: 2;
        }
        
        .collection-content {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 3;
        }
        
        .collection-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .collection-subtitle {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .collection-card:hover .collection-image {
            transform: scale(1.05);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .feature-desc {
            color: var(--light-text);
            line-height: 1.6;
        }
        
        /* Newsletter */
        .newsletter {
            padding: 60px 0;
            background-color: var(--primary);
            color: white;
            text-align: center;
        }
        
        .newsletter h3 {
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 20px;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .newsletter-btn {
            background-color: var(--accent);
            color: var(--primary);
            padding: 0 30px;
            border: none;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: #c1a033;
        }
        
        /* Footer */
        footer {
            background-color: #111;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-about p {
            opacity: 0.7;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--accent);
        }
        
        .footer-links h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            opacity: 0.7;
            transition: opacity 0.3s, color 0.3s;
        }
        
        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            opacity: 0.7;
        }
        
        .contact-icon {
            font-size: 18px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            opacity: 0.7;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero {
                height: auto;
                padding: 60px 0;
            }
            
            .hero-content {
                width: 100%;
                padding: 0 20px;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
           
            
            .collection-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 4px;
                padding: 15px;
            }
        }
