
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f5f5f0;
        }
/* 
        Header
        header {
            background: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a.active {
            color: #333;
            background: #f4d03f;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .nav-links a:hover {
            color: #333;
        }

        .sign-up {
            background: #000;
            color: white;
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .sign-up:hover {
            background: #333;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        } */

        /* Hero Section */

        @media (max-width: 1000px) {
    .navbar {
        padding: 40px 50px;
    }
}
        .hero {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-text {
            background: #e8f0e8;
            padding: 3rem;
            border-radius: 8px;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .hero-text p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .shop-btn {
            background: #000;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .shop-btn:hover {
            background: #333;
        }

        .hero-images {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 400px;
        }

        .hero-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.6));
            color: white;
            padding: 2rem;
        }

        .hero-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Daily Drops */
        .daily-drops {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        .drops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .drop-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .drop-card:hover {
            transform: translateY(-5px);
        }

        .drop-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .drop-label {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: rgba(255,255,255,0.95);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Lookbook & Trends */
        .content-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .content-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        .lookbook-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .lookbook-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .lookbook-card:hover {
            transform: scale(1.02);
        }

        .lookbook-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lookbook-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 2rem 1rem 1rem;
            font-weight: 600;
        }

        /* Trends */
        .trends-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trend-item {
            cursor: pointer;
            transition: transform 0.3s;
        }

        .trend-item:hover {
            transform: translateY(-5px);
        }

        .trend-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            border: 3px solid #fff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .trend-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trend-name {
            font-weight: 600;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
          

            .hero {
                padding: 0 1rem;
                margin: 1rem auto;
            }

            .hero-text {
                padding: 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            /* .hero-image {
                height: 300px;
            } */

            .content-section {
                padding: 0 1rem;
                margin: 2rem auto;
            }

            .content-section h2 {
                font-size: 1.5rem;
            }

            .drops-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1rem;
            }

            .drop-card {
                height: 250px;
            }

            .lookbook-grid {
                grid-template-columns: 1fr;
            }

            .trends-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1.5rem;
            }

            .trend-circle {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.75rem;
            }

            .drops-grid {
                grid-template-columns: 1fr;
            }

            .trends-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
  