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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo span {
    color: #d4af37;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.cart-icon {
    cursor: pointer;
    font-size: 1.5rem;
    position: relative;
}

.cart-icon span {
    position: absolute;
    top: -10px;
    right: -15px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1594035910388-3443d2d6f691?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.gold-text {
    color: #d4af37;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 5rem 5%;
    background: #0a0a0a;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 8px 25px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #d4af37;
    color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.product-stock {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.in-stock {
    color: #4caf50;
}

.out-of-stock {
    color: #f44336;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: #d4af37;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.add-to-cart:hover:not(:disabled) {
    background: #fff;
}

.add-to-cart:disabled {
    background: #444;
    cursor: not-allowed;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.rating {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.about-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-info h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.about-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background: #111;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    border: 1px solid #d4af37;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #d4af37;
}

#checkout-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
}

.checkout-btn, .pay-btn {
    width: 100%;
    padding: 12px;
    background: #d4af37;
    color: #000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}