﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: 'Inter', sans-serif;
    color: #e8e0d9;
}

/* Corporate Bar */
.corporate-bar {
    background: #161616;
    padding: 8px 5%;
    font-size: 0.8rem;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    color: #a09080;
    flex-wrap: wrap;
    gap: 10px;
}

    .corporate-bar a {
        color: #c9a96b;
        text-decoration: none;
        margin-left: 12px;
    }

#app {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.8rem;
    color: #a09080;
    border-bottom: 1px solid #1a1a1a;
    flex-wrap: wrap;
    gap: 10px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    font-weight: 600;
    color: #c9a96b;
    letter-spacing: 8px;
}

.logo p {
    font-size: 0.7rem;
    color: #a09080;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    gap: 30px;
}

    .header-actions a {
        color: #e8e0d9;
        text-decoration: none;
        font-size: 1.1rem;
    }

.cart-luxury {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #c9a96b;
    color: #0a0a0a;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 600;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

    nav a {
        text-decoration: none;
        color: #a09080;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 3px;
        transition: color 0.2s;
        white-space: nowrap;
    }

        nav a.active {
            color: #c9a96b;
        }

/* Hero */
.hero-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0 50px;
}

    .hero-luxury h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.5rem, 7vw, 4rem);
        font-weight: 300;
        color: #e8e0d9;
        line-height: 1.1;
    }

        .hero-luxury h2 em {
            color: #c9a96b;
            font-style: italic;
        }

    .hero-luxury p {
        color: #a09080;
        margin: 25px 0;
        font-size: 1.1rem;
        font-weight: 300;
    }

.btn-luxury {
    background: transparent;
    border: 1px solid #c9a96b;
    color: #c9a96b;
    padding: 14px 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-luxury:hover {
        background: #c9a96b;
        color: #0a0a0a;
    }

.hero-visual {
    text-align: center;
    font-size: 10rem;
}

/* Category Row */
.category-row {
    display: flex;
    gap: 2px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-item {
    flex: 1;
    min-width: 120px;
    background: #111;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #1a1a1a;
}

    .category-item:hover {
        background: #1a1a1a;
        border-color: #c9a96b;
    }

    .category-item i {
        font-size: 2rem;
        color: #c9a96b;
        margin-bottom: 12px;
    }

    .category-item span {
        display: block;
        text-transform: uppercase;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 60px 0 30px;
    flex-wrap: wrap;
    gap: 15px;
}

    .section-header h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.8rem, 4vw, 2.3rem);
        font-weight: 400;
        color: #e8e0d9;
    }

        .section-header h3 i {
            color: #c9a96b;
            margin-right: 12px;
        }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #111;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
}

    .product-card:hover {
        border-color: #c9a96b;
        transform: translateY(-5px);
    }

.product-image {
    aspect-ratio: 3/4;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.exclusive-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c9a96b;
    color: #0a0a0a;
    padding: 4px 12px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-details {
    padding: 20px 15px;
}

.product-designer {
    font-size: 0.7rem;
    color: #c9a96b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin: 8px 0;
    color: #e8e0d9;
}

.price-luxury {
    font-size: 1.3rem;
    color: #c9a96b;
    font-weight: 500;
}

.size-options {
    display: flex;
    gap: 8px;
    margin: 12px 0;
}

.size {
    width: 30px;
    height: 30px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #a09080;
}

/* Editorial Section */
.editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.editorial-card {
    aspect-ratio: 3/4;
    background: #111;
    border: 1px solid #1a1a1a;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.3s;
}

    .editorial-card:hover {
        border-color: #c9a96b;
    }

    .editorial-card h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        color: #e8e0d9;
        margin-bottom: 10px;
    }

.editorial-1 {
    background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent), #1a1a2e;
}

.editorial-2 {
    background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent), #2e1a1a;
}

.editorial-3 {
    background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent), #1a2e1a;
}

/* Footer */
.footer-luxury {
    margin-top: 80px;
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    padding: clamp(30px, 5vw, 50px) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: #c9a96b;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 12px 0;
}

.footer-col a {
    color: #a09080;
    text-decoration: none;
    font-size: 0.85rem;
}

.vip-input {
    display: flex;
    margin-top: 20px;
}

    .vip-input input {
        flex: 1;
        background: #111;
        border: 1px solid #2a2a2a;
        padding: 14px;
        color: white;
        outline: none;
    }

    .vip-input button {
        background: #c9a96b;
        color: #0a0a0a;
        border: none;
        padding: 0 25px;
        cursor: pointer;
        font-weight: 600;
    }

.company-footer {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #a09080;
}

    .company-footer i {
        color: #c9a96b;
        margin-right: 8px;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-luxury {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .editorial {
        grid-template-columns: 1fr;
    }

    nav {
        gap: 25px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vip-input {
        max-width: 350px;
        margin: 20px auto 0;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    nav a {
        font-size: 0.7rem;
    }
}
