* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garamond', 'Times New Roman', serif;
    background: #faf8f3;
    color: #2c2c2c;
    line-height: 1.8;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    color: #d4af37;
}

.brand h1 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 3px;
    color: #c9a961;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

nav a:hover {
    border-bottom-color: #d4af37;
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1200') center/cover;
    height: 600px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: 2px;
}

.hero-button {
    display: inline-block;
    padding: 15px 50px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 600;
    transition: background 0.3s;
    border: 2px solid #d4af37;
}

.hero-button:hover {
    background: transparent;
    color: #d4af37;
}

.collections-section {
    padding: 100px 30px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 70px;
    letter-spacing: 5px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #d4af37;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.product-item {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.exclusive-badge {
    background: #d4af37;
    color: #1a1a1a;
    padding: 8px 20px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-details {
    padding: 30px;
    text-align: center;
}

.product-details h3 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.product-description {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.purchase-button {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    color: #d4af37;
    border: 2px solid #d4af37;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Garamond', serif;
}

.purchase-button:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.exclusive-section {
    padding: 100px 30px;
    background: #1a1a1a;
    color: #d4af37;
    text-align: center;
}

.exclusive-content {
    max-width: 800px;
    margin: 0 auto;
}

.exclusive-content p {
    font-size: 1.3rem;
    line-height: 2;
    font-style: italic;
    letter-spacing: 1px;
}

.contact-section {
    padding: 100px 30px;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info p {
    font-size: 1.2rem;
    margin: 20px 0;
    letter-spacing: 1px;
    color: #2c2c2c;
}

footer {
    background: #1a1a1a;
    color: #d4af37;
    text-align: center;
    padding: 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

footer p {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 30px;
    }
    
    nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

