/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== ЛИПКАЯ ШАПКА ========== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.navbar-wrapper.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    border-bottom-color: #d4af37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0;
    transition: padding 0.3s ease;
}

.navbar-wrapper.scrolled .navbar {
    padding: 10px 0;
}

.logo img {
    height: 56px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar-wrapper.scrolled .logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 500;
    transition: color 0.2s;
}

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

.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.lang-switch button {
    background: none;
    border: none;
    color: #b0b0b0;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-switch button:hover {
    color: #d4af37;
}

.lang-switch button.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
}

/* ========== HERO С ФОНОМ ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ========== КНОПКИ ========== */
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s;
    cursor: pointer;
}

.btn-primary {
    background-color: #d4af37;
    color: #0a0a0a;
    border: 2px solid #d4af37;
}

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

.btn-outline {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

.btn-outline:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 70px 0 50px;
}

.feature-card {
    flex: 1 1 220px;
    text-align: center;
    background: #141414;
    padding: 32px 20px;
    border-radius: 20px;
    border-bottom: 3px solid #d4af37;
    transition: 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

.feature-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d4af37;
}

.feature-card p {
    font-size: 14px;
    color: #a0a0a0;
}

/* ========== ПРОДУКЦИЯ ========== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 70px 0 16px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #d4af37;
    margin-bottom: 40px;
    font-size: 18px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}

.product-card {
    background: #141414;
    border-radius: 24px;
    overflow: hidden;
    width: 280px;
    transition: 0.2s;
    border: 1px solid #2a2a2a;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h4 {
    padding: 20px 20px 8px;
    font-size: 20px;
    color: #d4af37;
}

.product-card p {
    padding: 0 20px 20px;
    color: #b0b0b0;
    font-size: 14px;
}

/* ========== ТАБЛИЦА ЦЕН ========== */
.price-section {
    overflow-x: auto;
    margin: 40px 0;
    background: #0f0f0f;
    border-radius: 24px;
    padding: 4px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #0f0f0f;
    border-radius: 20px;
}

.price-table th {
    background-color: #1a1a1a;
    color: #d4af37;
    padding: 16px 12px;
    font-weight: 600;
    border-bottom: 2px solid #d4af37;
}

.price-table td {
    border-bottom: 1px solid #2a2a2a;
    padding: 14px 12px;
    text-align: center;
    color: #e0e0e0;
}

.price-table tr:hover td {
    background: #1c1c1c;
}

/* ========== КОНТАКТЫ + QR ========== */
.contact-qr-row {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    background: #141414;
    border-radius: 32px;
    padding: 48px 40px;
    margin: 56px 0;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #2a2a2a;
}

.qr-box {
    text-align: center;
    flex: 1;
}

.qr-box img {
    max-width: 170px;
    border-radius: 20px;
    background: white;
    padding: 8px;
}

.qr-box p {
    margin-top: 16px;
    font-weight: 600;
    color: #d4af37;
}

.contacts-info {
    flex: 1.5;
}

.contacts-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #d4af37;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
    font-size: 18px;
}

.contact-line a {
    color: #e5e5e5;
    text-decoration: none;
}

.contact-line a:hover {
    color: #d4af37;
}

/* ========== ПОДВАЛ ========== */
footer {
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding: 40px 0 32px;
    margin-top: 40px;
    color: #888;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 20px 0;
}

.footer-links a {
    text-decoration: none;
    color: #888;
}

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

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #d4af37;
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }
    .navbar {
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 24px 0;
    }
    .nav-links.show {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-content {
        padding: 50px 20px;
    }
    .hero p {
        font-size: 16px;
    }
    .section-title {
        font-size: 28px;
    }
    .contact-qr-row {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }
    .contact-line {
        justify-content: center;
    }
}
