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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0A0A0A;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    cursor: pointer;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 28px;
}

.logo p {
    font-size: 12px;
    color: #999;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav a:hover {
    color: #D4AF37;
}

.cart-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.cart-btn:hover {
    color: #D4AF37;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #D4AF37;
    color: #0A0A0A;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image img {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-badge {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 30px;
}

/* Catalog */
.catalog, .catalog-page {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #D4AF37;
}

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

.product-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.product-image {
    width: 100%;
    height: 500px;
    overflow: visible;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    color: #D4AF37;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-add-to-cart, .btn-gold {
    background: #D4AF37;
    color: #0A0A0A;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
}

.btn-add-to-cart:hover, .btn-gold:hover {
    background: #B8860B;
    transform: translateY(-2px);
}

/* Category Filter */
.category-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #D4AF37;
    color: #0A0A0A;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111111;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close {
    font-size: 28px;
    cursor: pointer;
    color: #D4AF37;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-total {
    margin: 20px 0;
    text-align: right;
    font-size: 18px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #D4AF37;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    background: #0A0A0A;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    border-radius: 8px;
    font-family: inherit;
}

/* Contacts */
.contacts {
    padding: 80px 0;
    background: #111111;
}

.contacts-content {
    text-align: center;
}

.contacts-info p {
    margin: 10px 0;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #0A0A0A;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-info h2 {
        font-size: 32px;
    }
}