@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --black: #000000;
            --dark: #1a1a1a;
            --gray: #888;
            --light: #f5f5f5;
            --white: #fff;
            --accent: #c8a2c8;
        }
        
        body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--black); }
        
        .announcement {
            background: var(--black);
            color: var(--white);
            text-align: center;
            padding: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        nav {
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            background: white;
            z-index: 100;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 8px;
            text-transform: uppercase;
        }
        
        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links a { color: var(--dark); text-decoration: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 1px; }
        .nav-links a:hover { color: var(--accent); }
        
        .nav-actions { display: flex; gap: 20px; align-items: center; }
        .nav-actions span { font-size: 1.2rem; cursor: pointer; }
        .cart-count {
            background: var(--black);
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
            background: var(--light);
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px;
        }
        
        .hero-tag {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        
        .hero p {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .hero-btns { display: flex; gap: 15px; }
        
        .btn-dark {
            background: var(--black);
            color: white;
            padding: 16px 36px;
            border: none;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .btn-light {
            background: white;
            color: var(--black);
            padding: 16px 36px;
            border: 1px solid #ddd;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .hero-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 15px;
        }
        
        .product-preview {
            background: #e8e8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
        }
        .product-preview:nth-child(1) { grid-row: span 2; }
        
        .new-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--black);
            color: white;
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .section { padding: 100px 50px; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.5px; }
        .section-header p { color: var(--gray); margin-top: 10px; }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .category-card {
            aspect-ratio: 3/4;
            background: var(--light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }
        .category-card:hover { background: #e0e0e0; }
        
        .category-label {
            position: absolute;
            bottom: 25px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .product-card { cursor: pointer; }
        .product-img {
            aspect-ratio: 3/4;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            margin-bottom: 15px;
            position: relative;
        }
        .product-img .quick-view {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: white;
            text-align: center;
            padding: 12px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s;
        }
        .product-card:hover .quick-view { opacity: 1; transform: translateY(0); }
        
        .product-name { font-weight: 600; margin-bottom: 5px; }
        .product-price { color: var(--gray); }
        .product-price .old { text-decoration: line-through; margin-right: 8px; }
        .product-price .new { color: var(--black); font-weight: 700; }
        
        .editorial-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        
        .editorial-big {
            background: var(--light);
            display: flex;
            align-items: flex-end;
            padding: 40px;
            min-height: 500px;
        }
        .editorial-big h3 { font-size: 2rem; font-weight: 700; }
        .editorial-big p { color: var(--gray); margin-top: 8px; }
        
        .editorial-stack { display: flex; flex-direction: column; gap: 20px; }
        .editorial-small {
            background: var(--light);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            flex: 1;
        }
        .editorial-small h3 { font-size: 1.2rem; font-weight: 600; }
        
        .newsletter-section {
            background: var(--black);
            color: white;
            text-align: center;
            padding: 100px 50px;
        }
        .newsletter-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
        .newsletter-section p { color: #888; margin-bottom: 30px; }
        .newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }
        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            font-size: 0.95rem;
        }
        .newsletter-form input::placeholder { color: #666; }
        .newsletter-form button {
            padding: 16px 30px;
            background: white;
            color: black;
            border: none;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        footer {
            padding: 60px 50px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            border-top: 1px solid #eee;
        }
        .footer-brand p { color: var(--gray); margin-top: 15px; line-height: 1.7; }
        .footer-col h4 { font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; }
        .footer-col a { display: block; color: var(--gray); text-decoration: none; padding: 5px 0; font-size: 0.9rem; }
        .footer-col a:hover { color: var(--black); }
        .footer-bottom { padding: 20px 50px; text-align: center; color: #aaa; font-size: 0.85rem; border-top: 1px solid #eee; }
