* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --luxury-gold: #d4af37;
    --soft-white: #fafafa;
    --gray: #666;
    --light-gray: #e5e5e5;
    --dark-gray: #333;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--soft-white);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.announcement-bar {
    background: var(--primary-black);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    letter-spacing: 1px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--primary-black);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--luxury-gold);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--luxury-gold);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23f5f5f5"/><path fill="%23d4af37" opacity="0.1" d="M0,500 Q480,400 960,500 T1920,500 L1920,1080 L0,1080 Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: white;
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--luxury-gold);
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.brand-card {
    text-align: center;
    padding: 30px;
    background: white;
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
    cursor: pointer;
}

.brand-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.brand-name {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--dark-gray);
}

.brand-origin {
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.product-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--luxury-gold);
    color: white;
    padding: 5px 10px;
    font-size: 11px;
    letter-spacing: 1px;
}

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-name {
    font-size: 16px;
    margin: 10px 0;
    color: var(--primary-black);
}

.product-price {
    font-size: 18px;
    color: var(--primary-black);
    font-weight: 500;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary-black);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: var(--dark-gray);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: var(--dark-gray);
}

.founder-info {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-left: 4px solid var(--luxury-gold);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000;
    overflow-y: auto;
}

.cart-modal.active {
    display: block;
    animation: slideIn 0.3s ease;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.cart-items {
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    background: var(--light-gray);
}

.cart-item-info {
    flex: 1;
}

.cart-total {
    padding: 20px;
    border-top: 2px solid var(--primary-black);
    font-size: 18px;
    font-weight: 500;
}

.checkout-btn {
    width: 90%;
    margin: 20px auto;
    display: block;
    padding: 15px;
    background: var(--luxury-gold);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #b8941f;
}

/* Footer */
footer {
    background: var(--primary-black);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--luxury-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .cart-modal {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}