/* Основные стили сайта BTG */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цветовая палитра - темная тема */
    --primary-color: #ff8c42;
    --primary-hover: #ff6b1a;
    --primary-glow: rgba(255, 140, 66, 0.3);
    --accent-amber: #ffb84d;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-gradient-start: #0f1629;
    --bg-gradient-mid: #1a1f35;
    --bg-gradient-end: #2d1f1a;
    --bg-gradient-orange: rgba(255, 140, 66, 0.15);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --text-color: #ffffff;
    --text-light: #b8bcc8;
    --text-muted: #6b7280;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--primary-glow);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 400;
    src: local('TildaSans'), local('TildaSans-Regular');
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 500;
    src: local('TildaSans Medium'), local('TildaSans-Medium');
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 600;
    src: local('TildaSans Semibold'), local('TildaSans-Semibold');
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 700;
    src: local('TildaSans Bold'), local('TildaSans-Bold');
    font-display: swap;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background: 
        linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%),
        radial-gradient(ellipse at top right, rgba(255, 140, 66, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 184, 77, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Background Animation - Subtle Floating Particles */

/* Background Layer - Very faint, slow particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(6px 6px at 8% 15%, rgba(255, 140, 66, 0.4), transparent),
        radial-gradient(5px 5px at 25% 35%, rgba(255, 184, 77, 0.35), transparent),
        radial-gradient(6px 6px at 45% 20%, rgba(255, 140, 66, 0.38), transparent),
        radial-gradient(5px 5px at 15% 70%, rgba(255, 184, 77, 0.33), transparent),
        radial-gradient(6px 6px at 70% 60%, rgba(255, 140, 66, 0.4), transparent),
        radial-gradient(5px 5px at 35% 85%, rgba(255, 184, 77, 0.35), transparent),
        radial-gradient(5px 5px at 55% 45%, rgba(255, 140, 66, 0.32), transparent),
        radial-gradient(6px 6px at 85% 10%, rgba(255, 184, 77, 0.38), transparent),
        radial-gradient(5px 5px at 60% 75%, rgba(255, 140, 66, 0.35), transparent),
        radial-gradient(5px 5px at 90% 40%, rgba(255, 184, 77, 0.33), transparent),
        radial-gradient(5px 5px at 20% 30%, rgba(255, 140, 66, 0.3), transparent),
        radial-gradient(6px 6px at 50% 80%, rgba(255, 184, 77, 0.4), transparent),
        radial-gradient(5px 5px at 75% 25%, rgba(255, 140, 66, 0.35), transparent),
        radial-gradient(5px 5px at 30% 55%, rgba(255, 184, 77, 0.33), transparent),
        radial-gradient(6px 6px at 65% 90%, rgba(255, 140, 66, 0.38), transparent),
        radial-gradient(5px 5px at 10% 50%, rgba(255, 184, 77, 0.32), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 25% 25%, 75% 75%, 10% 90%, 90% 10%, 40% 60%, 60% 40%, 15% 15%, 85% 85%, 20% 80%, 80% 20%;
    animation: ambientParticlesBg 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

@keyframes ambientParticlesBg {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 25% 25%, 75% 75%, 10% 90%, 90% 10%, 40% 60%, 60% 40%, 15% 15%, 85% 85%, 20% 80%, 80% 20%;
        opacity: 0.9;
    }
    20% {
        background-position: 4% -3%, 96% 3%, 54% 47%, -3% 97%, 97% 103%, 47% -3%, 29% 22%, 71% 77%, 14% 87%, 86% 13%, 44% 57%, 56% 43%, 19% 12%, 81% 88%, 24% 77%, 76% 23%;
        opacity: 1;
    }
    40% {
        background-position: 6% -4%, 94% 4%, 56% 46%, -4% 96%, 96% 104%, 46% -4%, 31% 21%, 69% 79%, 16% 86%, 84% 16%, 46% 56%, 54% 44%, 21% 11%, 79% 89%, 26% 76%, 74% 24%;
        opacity: 0.95;
    }
    60% {
        background-position: 5% -3%, 95% 3%, 55% 47%, -3% 97%, 97% 103%, 47% -3%, 30% 23%, 70% 77%, 15% 88%, 85% 15%, 45% 58%, 55% 42%, 20% 13%, 80% 87%, 25% 78%, 75% 22%;
        opacity: 1;
    }
    80% {
        background-position: 3% -2%, 97% 2%, 53% 48%, -2% 98%, 98% 102%, 48% -2%, 28% 24%, 72% 76%, 13% 89%, 87% 13%, 43% 59%, 57% 41%, 18% 14%, 82% 86%, 23% 79%, 77% 21%;
        opacity: 0.95;
    }
    100% {
        background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 25% 25%, 75% 75%, 10% 90%, 90% 10%, 40% 60%, 60% 40%, 15% 15%, 85% 85%, 20% 80%, 80% 20%;
        opacity: 0.9;
    }
}

/* Foreground Layer - Slightly brighter, faster particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(7px 7px at 18% 25%, rgba(255, 140, 66, 0.45), transparent),
        radial-gradient(6px 6px at 52% 68%, rgba(255, 184, 77, 0.42), transparent),
        radial-gradient(6.5px 6.5px at 78% 15%, rgba(255, 140, 66, 0.44), transparent),
        radial-gradient(5.5px 5.5px at 28% 85%, rgba(255, 184, 77, 0.4), transparent),
        radial-gradient(7px 7px at 88% 72%, rgba(255, 140, 66, 0.45), transparent),
        radial-gradient(6px 6px at 48% 35%, rgba(255, 184, 77, 0.42), transparent),
        radial-gradient(5.5px 5.5px at 65% 58%, rgba(255, 140, 66, 0.38), transparent),
        radial-gradient(6.5px 6.5px at 35% 22%, rgba(255, 184, 77, 0.44), transparent),
        radial-gradient(6px 6px at 72% 88%, rgba(255, 140, 66, 0.4), transparent),
        radial-gradient(5.5px 5.5px at 15% 62%, rgba(255, 184, 77, 0.38), transparent),
        radial-gradient(6px 6px at 58% 42%, rgba(255, 140, 66, 0.4), transparent),
        radial-gradient(5.5px 5.5px at 42% 78%, rgba(255, 184, 77, 0.38), transparent);
    background-size: 150% 150%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 25% 25%, 75% 75%, 10% 90%, 90% 10%, 40% 60%, 60% 40%, 30% 30%, 70% 70%;
    animation: ambientParticlesFg 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

@keyframes ambientParticlesFg {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 25% 25%, 75% 75%, 10% 90%, 90% 10%, 40% 60%, 60% 40%, 30% 30%, 70% 70%;
        opacity: 0.95;
    }
    25% {
        background-position: 5% -4%, 95% 4%, 55% 46%, -4% 96%, 96% 104%, 46% -4%, 30% 21%, 70% 79%, 15% 85%, 85% 15%, 45% 57%, 55% 43%, 35% 25%, 65% 75%;
        opacity: 1;
    }
    50% {
        background-position: 7% -5%, 93% 5%, 57% 45%, -5% 95%, 95% 105%, 45% -5%, 32% 20%, 68% 80%, 17% 84%, 83% 17%, 47% 56%, 53% 44%, 37% 24%, 63% 76%;
        opacity: 0.98;
    }
    75% {
        background-position: 4% -3%, 96% 3%, 54% 47%, -3% 97%, 97% 103%, 47% -3%, 29% 22%, 71% 78%, 14% 86%, 86% 14%, 44% 58%, 56% 42%, 33% 28%, 67% 72%;
        opacity: 1;
    }
    100% {
        background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 25% 25%, 75% 75%, 10% 90%, 90% 10%, 40% 60%, 60% 40%, 30% 30%, 70% 70%;
        opacity: 0.95;
    }
}

/* Fade in/out effect for particles */
@keyframes particleFade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
    }
}

/* Уважение к prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    body::before,
    body::after,
    html::before,
    html::after {
        animation: none !important;
        opacity: 0 !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Контейнеры должны быть поверх фона */
.container,
main,
header,
footer {
    position: relative;
    z-index: 1;
}

/* Header - Glassmorphism */
.header {
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Contacts Page */
.contacts-grid,
.cheats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card,
.cheat-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before,
.cheat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 184, 77, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius-lg);
    z-index: 0;
}

.contact-card::after,
.cheat-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-amber));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(12px);
}

.contact-card:hover,
.cheat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 140, 66, 0.3);
    border-color: rgba(255, 140, 66, 0.3);
    background: var(--bg-glass-hover);
}

.contact-card:hover::before,
.cheat-card:hover::before {
    opacity: 1;
}

.contact-card:hover::after,
.cheat-card:hover::after {
    opacity: 0.4;
}

.contact-card__icon,
.cheat-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-card__icon,
.cheat-card:hover .cheat-card__icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 140, 66, 0.4);
}

.contact-card__icon--discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4), 0 0 20px rgba(88, 101, 242, 0.2);
}

.contact-card__icon--telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4), 0 0 20px rgba(0, 136, 204, 0.2);
}

.contact-card__icon--vk {
    background: linear-gradient(135deg, #4C75A3 0%, #3A5A7A 100%);
    box-shadow: 0 4px 16px rgba(76, 117, 163, 0.4), 0 0 20px rgba(76, 117, 163, 0.2);
}

.contact-card__icon--email {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4), 0 0 20px rgba(255, 140, 66, 0.2);
}

.cheat-card__icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4), 0 0 20px rgba(255, 140, 66, 0.2);
    color: white;
}

.contact-card__title,
.cheat-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-card__title,
.cheat-card:hover .cheat-card__title {
    color: var(--accent-amber);
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
}

.contact-card__description,
.cheat-card__description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-card__button,
.cheat-card__button {
    display: inline-block;
    padding: 14px 28px;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-card__button::before,
.cheat-card__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.contact-card__button:hover::before,
.cheat-card__button:hover::before {
    left: 100%;
}

.contact-card__button:hover,
.cheat-card__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 140, 66, 0.4);
}

.contact-card__button--discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4), 0 0 20px rgba(88, 101, 242, 0.2);
}

.contact-card__button--discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.6), 0 0 30px rgba(88, 101, 242, 0.4);
}

.contact-card__button--telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4), 0 0 20px rgba(0, 136, 204, 0.2);
}

.contact-card__button--telegram:hover {
    background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.6), 0 0 30px rgba(0, 136, 204, 0.4);
}

.contact-card__button--vk {
    background: linear-gradient(135deg, #4C75A3 0%, #3A5A7A 100%);
    box-shadow: 0 4px 16px rgba(76, 117, 163, 0.4), 0 0 20px rgba(76, 117, 163, 0.2);
}

.contact-card__button--vk:hover {
    background: linear-gradient(135deg, #3A5A7A 0%, #4C75A3 100%);
    box-shadow: 0 6px 24px rgba(76, 117, 163, 0.6), 0 0 30px rgba(76, 117, 163, 0.4);
}

.contact-card__button--email {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4), 0 0 20px rgba(255, 140, 66, 0.2);
}

.contact-card__button--email:hover {
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.6), 0 0 30px rgba(255, 140, 66, 0.4);
}

@media (max-width: 639px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Search Section */
.search-section {
    padding: 60px 0;
    position: relative;
}

.search-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.search-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-form {
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(255, 140, 66, 0.3);
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--text-color);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.search-button {
    padding: 18px 28px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.search-button:hover {
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-color) 100%);
    box-shadow: 0 0 20px var(--primary-glow);
}

.search-button:active {
    transform: scale(0.98);
}

.search-results {
    display: none;
    margin-top: 30px;
}

.search-results.active {
    display: block;
}

.search-results__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.search-results__count {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.search-results__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-results__item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.search-results__item:hover {
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateX(4px);
    background: var(--bg-glass-hover);
}

.search-results__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-results__item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.search-results__item:hover .search-results__item-title {
    color: var(--primary-hover);
}

.search-results__item-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.search-results__item-url {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.7;
}

.search-results__no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.search-results__no-results-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.search-results__no-results-text {
    font-size: 14px;
    line-height: 1.6;
}

.search-highlight {
    background: linear-gradient(135deg, rgba(186,82,0,0.15) 0%, rgba(186,82,0,0.1) 100%);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

@media (max-width: 639px) {
    .search-title {
        font-size: 24px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .search-button {
        padding: 14px 20px;
        min-width: 50px;
    }
    
    .search-results__item {
        padding: 15px;
    }
    
    .search-results__item-title {
        font-size: 16px;
    }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.header__logo a {
    display: block;
    transition: opacity 0.3s ease;
}

.header__logo a:hover {
    opacity: 0.9;
}

.header__logo img {
    height: 41px;
    width: auto;
    max-width: 225px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 20px rgba(255, 140, 66, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header__logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(255, 140, 66, 0.6));
}

.header__nav {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    flex-wrap: nowrap;
}

.header__right {
    display: none;
}

.header__social {
    display: none;
}

.header__nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 8px 10px;
    white-space: nowrap;
    position: relative;
    border-radius: var(--border-radius);
}

.header__lang-link {
    font-size: 13px;
    padding: 6px 8px;
    opacity: 0.8;
    margin-left: 5px;
}

.header__lang-link:hover {
    opacity: 1;
}

.header__nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-glass);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.header__nav-link:hover {
    color: var(--primary-color);
}

.header__nav-link:hover::before {
    opacity: 1;
}


.header__lang {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: var(--bg-glass);
}

.header__lang:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255, 140, 66, 0.1);
}

/* Hero Section - Premium Dark */
.hero {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero__content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 140, 66, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 140, 66, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__cta {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    font-size: 18px;
    padding: 18px 40px;
    display: inline-block;
}

/* Sections - Glassmorphism */
.section {
    padding: 60px 0;
    position: relative;
}

.section:first-of-type {
    padding-top: 60px;
}

.section__text {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}

.section__text h2,
.section__text h3 {
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 16px;
}

.section__text h2:first-child,
.section__text h3:first-child {
    margin-top: 0;
}

.section__text ul,
.section__text ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-light);
}

.section__text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.section__text strong {
    color: var(--text-color);
    font-weight: 600;
}

.title-section {
    padding: 15px 0;
    text-align: center;
}

.title-section h1,
.title-section h2,
.title-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.title-section h1::after,
.title-section h2::after,
.title-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.text-section {
    padding: 30px 0;
}

.text-section .container {
    max-width: 960px;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    color: var(--text-color);
    animation: fadeInDown 0.6s ease-out;
}

.section__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s backwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.section__text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-light);
}

.section__text p {
    margin-bottom: 1em;
}

.section__text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.section__text a:hover {
    border-bottom-color: var(--primary-color);
}

/* Catalog */
.catalog {
    padding: 60px 0;
    position: relative;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.catalog__item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out backwards;
}

.catalog__item:nth-child(1) { animation-delay: 0.1s; }
.catalog__item:nth-child(2) { animation-delay: 0.2s; }
.catalog__item:nth-child(3) { animation-delay: 0.3s; }
.catalog__item:nth-child(4) { animation-delay: 0.4s; }
.catalog__item:nth-child(5) { animation-delay: 0.5s; }
.catalog__item:nth-child(6) { animation-delay: 0.6s; }
.catalog__item:nth-child(7) { animation-delay: 0.7s; }
.catalog__item:nth-child(8) { animation-delay: 0.8s; }

.catalog__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(255, 184, 77, 0.1), rgba(255, 140, 66, 0.12));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
    border-radius: var(--border-radius-lg);
}

.catalog__item::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-amber), var(--primary-color));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(16px);
}

.catalog__item a {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

.catalog__item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 140, 66, 0.15),
        0 0 30px rgba(255, 184, 77, 0.1);
    border-color: rgba(255, 140, 66, 0.2);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.04), rgba(255, 184, 77, 0.02));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.catalog__item:hover::before {
    opacity: 1;
}

.catalog__item:hover::after {
    opacity: 0.15;
}

.catalog__item-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    filter: brightness(0.95) contrast(1.05);
}

.catalog__item:hover .catalog__item-image {
    transform: scale(1.05);
    filter: brightness(1.08) contrast(1.03) saturate(1.03) drop-shadow(0 0 8px rgba(255, 140, 66, 0.15));
}

.catalog__item-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.catalog__item-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.3;
    transition: var(--transition-fast);
}

.catalog__item:hover .catalog__item-title {
    color: var(--accent-amber);
    text-shadow: 0 0 4px rgba(255, 184, 77, 0.2);
}

.catalog__item-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: auto;
    line-height: 1.6;
    min-height: 45px;
    flex-grow: 1;
}

.catalog__item-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--accent-amber);
    display: block;
    text-align: left;
    transition: var(--transition-fast);
}

.catalog__item:hover .catalog__item-price {
    color: var(--accent-amber);
    text-shadow: 0 0 4px rgba(255, 184, 77, 0.2);
}

.catalog__item-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border: none;
}

.catalog__item-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.catalog__item-button:hover::before {
    left: 100%;
}

.catalog__item:hover .catalog__item-button {
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-color) 100%);
    box-shadow: 
        0 6px 18px rgba(255, 140, 66, 0.25),
        0 0 20px rgba(255, 184, 77, 0.2);
    transform: translateY(-2px);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3), var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.5), 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 184, 77, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--text-color);
    border: 2px solid rgba(255, 140, 66, 0.3);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 140, 66, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.25) 0%, rgba(255, 184, 77, 0.2) 100%);
    border-color: rgba(255, 140, 66, 0.6);
    color: var(--accent-amber);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 140, 66, 0.3),
        0 0 40px rgba(255, 184, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.03);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 140, 66, 0.2);
}

.product-buy__buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 20px 0;
}

.product-buy__buttons .btn {
    min-width: 240px;
    font-size: 16px;
    padding: 18px 36px;
    font-weight: 700;
    letter-spacing: 1.2px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-buy__buttons .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(255, 184, 77, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 66, 0.4);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 140, 66, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.product-buy__buttons .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.35) 0%, rgba(255, 184, 77, 0.3) 100%);
    border-color: rgba(255, 140, 66, 0.7);
    color: var(--accent-amber);
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(255, 140, 66, 0.4),
        0 0 50px rgba(255, 184, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
}

.product-buy__buttons .btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
}

/* Video */
.product-video {
    padding: 30px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.video-wrapper {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 40.625%; /* 16:9 для меньшего размера */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background-color: #000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Кнопка Play для видео */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    opacity: 1;
    pointer-events: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 30px solid var(--primary-color);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    z-index: 11;
    transition: var(--transition);
    opacity: 1;
    pointer-events: none;
}

.video-wrapper:hover::before {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing::before,
.video-wrapper.playing::after {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper video {
    cursor: pointer;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--text-color), transparent);
    opacity: 0.2;
    margin: 15px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer__nav {
    margin-bottom: 30px;
}

.footer__nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.footer__nav li {
    display: inline-block;
}

.footer__nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.footer__nav-link:hover {
    background: var(--bg-glass);
}

.footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--primary-color);
}

.footer__nav-link:hover::after {
    width: 100%;
}

.footer__logo-wrapper {
    text-align: center;
    margin: 30px 0;
}

.footer__logo-wrapper a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer__logo-wrapper a:hover {
    opacity: 0.9;
}

.footer__logo {
    max-width: 225px;
    height: 41px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 20px rgba(255, 140, 66, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__logo-wrapper a:hover .footer__logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(255, 140, 66, 0.6));
}

.footer__copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.8;
}

/* Стили для виджета перевода */
.footer__translate-wrapper {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer__translate-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-align: right;
}

#ytWidget {
    margin-top: 8px;
    width: auto;
    max-width: 200px;
    display: inline-block;
}

/* Стилизация кнопки виджета Яндекс.Переводчика */
#ytWidget iframe {
    border-radius: 8px;
    overflow: hidden;
}

/* Кастомизация виджета перевода */
.footer__translate-wrapper .ya-widget {
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s;
}

.footer__translate-wrapper .ya-widget:hover {
    background: rgba(255, 140, 66, 0.15);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.2);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .footer__translate-wrapper {
        margin-top: 20px;
        padding-top: 20px;
        align-items: center;
        text-align: center;
    }
    
    .footer__translate-description {
        font-size: 13px;
        text-align: center;
    }
    
    #ytWidget {
        max-width: 100%;
        margin: 10px auto 0;
    }
}

@media (max-width: 480px) {
    .footer__translate-wrapper {
        margin-top: 18px;
        padding-top: 18px;
        align-items: center;
        text-align: center;
    }
    
    .footer__translate-description {
        font-size: 12px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    #ytWidget {
        max-width: 100%;
        margin: 8px auto 0;
    }
}

/* Cookie Notice */
/* Кнопка скролла вверх */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-amber) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4), 0 0 30px rgba(255, 184, 77, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--accent-amber) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 30px rgba(255, 140, 66, 0.6), 0 0 40px rgba(255, 184, 77, 0.5);
    transform: translateY(-5px) scale(1.1);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
    transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(186, 82, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(186, 82, 0, 0.6);
    }
}


/* Product Page - Унифицированные стили блоков */
.product-hero,
.product-page-hero {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.product-hero__title,
.product-page-hero__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Единый стиль для всех секций с контентом */
.product-video,
.product-content,
.product-requirements {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.product-requirements__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.product-requirements__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.product-requirements .section__text {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.product-requirements .section__text p {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.product-requirements .section__text p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.product-requirements .section__text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.product-requirements .section__text a:hover {
    color: #ba5200;
    text-decoration: none;
}

.product-buy,
.product-features,
.title-section,
.text-section {
    padding: 60px 0;
    position: relative;
}

/* Единый стиль для заголовков секций */
.product-buy__title,
.product-features__title,
.title-section h2,
.title-section h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.4;
}

/* Единый стиль для текстовых блоков */
.product-content .section__text,
.text-section .section__text,
.text-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.text-section p {
    margin-bottom: 15px;
}

.text-section p:last-child {
    margin-bottom: 0;
}

.product-buy {
    padding: 30px 0;
}

.product-buy__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.product-details__buttons .btn {
    min-width: 240px;
    text-align: center;
    font-size: 16px;
    padding: 18px 36px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.product-features {
    padding: 30px 0;
}

.product-features__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-features__column h3,
.product-features h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.product-features__column ul,
.product-features ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-features__column li,
.product-features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.6;
    transition: var(--transition);
}

.product-features__column li:hover,
.product-features li:hover {
    padding-left: 25px;
    color: var(--primary-color);
}

.product-features__column li:before,
.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.product-features .t-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.product-features .t-col {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-features .t-col:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-gallery {
    padding: 15px 0;
}

.product-gallery,
.image-slider {
    padding: 30px 0;
}

.product-gallery__slider,
.image-slider .slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block;
}

.product-gallery__image {
    width: 100%;
    height: auto;
    display: none;
    object-fit: cover;
}

.product-gallery__image.active {
    display: block;
}

.product-gallery__image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-gallery__image:hover {
    transform: scale(1.02);
}

/* Lightbox для изображений */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    border: 2px solid rgba(255,255,255,0.3);
}

.lightbox__close:hover {
    background-color: rgba(255,255,255,0.2);
    transform: rotate(90deg);
    border-color: rgba(255,255,255,0.6);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    border: 2px solid rgba(255,255,255,0.3);
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 639px) {
    .lightbox__close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .lightbox__prev,
    .lightbox__next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .lightbox__prev {
        left: 15px;
    }
    
    .lightbox__next {
        right: 15px;
    }
}

.product-gallery__slider {
    position: relative;
    overflow: hidden;
}

.product-gallery__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.product-gallery__button,
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d5c1b1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    margin: 0 5px;
}

.product-gallery__button.active,
.slider-dots .dot.active {
    background: #222;
    transform: scale(1.2);
}

.product-gallery__button:hover,
.slider-dots .dot:hover {
    background: #999;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
}

.slider-button {
    background-color: rgba(255, 133, 98, 0.8);
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    line-height: 1;
    transition: var(--transition);
    pointer-events: all;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background-color: rgba(255, 133, 98, 1);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: transparent;
    border-bottom: none;
    margin-bottom: 0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    font-size: 12px;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    background: transparent;
    position: relative;
}

.breadcrumbs a:hover {
    color: var(--accent-amber);
    background: rgba(255, 140, 66, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.breadcrumbs span {
    color: var(--text-color);
    font-weight: 500;
    padding: 6px 12px;
    opacity: 0.9;
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 959px) {
    .header {
        padding: 15px 0;
    }
    
    .header__inner {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .header__logo {
        order: 1;
    }
    
    /* Стили для .header__nav перенесены ниже в секцию мобильного меню */
    
    .header__nav-link {
        font-size: 16px;
    }
    
    /* Стили для .header__right перенесены ниже в секцию мобильного меню */
    
    .header__lang {
        font-size: 14px;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 450px;
        padding: 70px 0;
    }
    
    .hero__title {
        font-size: 27px;
    }
    
    .hero__text {
        font-size: 19px;
    }
    
    .catalog__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .section__title {
        font-size: 22px;
    }
}

@media (max-width: 639px) {
    .hero {
        background-attachment: scroll;
        min-height: 400px;
        padding: 50px 0;
    }
    
    .hero__title {
        font-size: 24px;
    }
    
    .hero__text {
        font-size: 18px;
    }
    
    .catalog__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section__title {
        font-size: 20px;
    }
    
    .section__text {
        font-size: 15px;
    }
    
    .product-buy__buttons,
    .product-details__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .product-buy__buttons .btn,
    .product-details__buttons .btn {
        min-width: 100%;
        width: 100%;
    }
    
    .product-features__grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 479px) {
    .header {
        padding: 12px 0;
    }
    
    .header__inner {
        gap: 12px;
    }
    
    .header__logo img {
        max-width: 180px;
        height: auto;
    }
    
    /* Стили для .header__nav перенесены ниже в секцию мобильного меню */
    
    .header__nav-link {
        font-size: 14px;
    }
    
    .header__right {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .header__lang {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 400px;
        padding: 30px 0;
    }
    
    .hero__title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .hero__text {
        font-size: 16px;
    }
    
    .catalog__item-content {
        padding: 15px;
    }
    
    .catalog__item-title {
        font-size: 16px;
    }
    
    .catalog__item-description {
        font-size: 14px;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer__nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Гамбургер-меню для мобильных */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.header__menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition-fast);
    transform-origin: center;
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Мобильные улучшения */
@media (max-width: 959px) {
    .header__menu-toggle {
        display: flex;
        order: 2;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__nav {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .header__nav.active {
        max-height: 500px;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .header__nav-link {
        width: 100%;
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 16px;
        min-height: 48px; /* Touch-friendly размер */
        display: flex;
        align-items: center;
    }
    
    .header__nav-link:last-child {
        border-bottom: none;
    }
    
    .header__lang-link {
        font-size: 14px;
        opacity: 0.9;
    }
    
    /* Переключатель языков теперь в меню, header__right больше не используется */
    
    /* Улучшения для hero на мобильных */
    .hero__content {
        padding: 40px 25px;
    }
    
    /* Улучшения для видео */
    .video-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .video-wrapper iframe,
    .video-wrapper video {
        border-radius: 0;
    }
    
    /* Улучшения для каталога */
    .catalog__item-image {
        height: 240px;
        padding: 15px;
    }
    
    /* Улучшения для кнопок */
    .btn {
        min-height: 48px; /* Touch-friendly размер */
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Улучшения для таблиц */
    .section__text table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Улучшения для форм */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        min-height: 48px; /* Touch-friendly размер */
        font-size: 16px; /* Предотвращает zoom на iOS */
    }
    
    /* Улучшения для breadcrumbs */
    .breadcrumbs {
        padding: 15px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .breadcrumbs ol {
        min-width: max-content;
    }
    
    /* Улучшения для галереи */
    .image-slider .slider-container {
        margin: 0 -20px;
    }
    
    .slider-item img {
        border-radius: 0;
    }
    
    /* Улучшения для системных требований */
    .product-requirements .section__text {
        padding: 25px 20px;
        margin: 0 -20px;
        border-radius: 0;
    }
    
    /* Улучшения для product-hero */
    .product-hero__title {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    /* Улучшения для product-features */
    .product-features__grid {
        gap: 20px;
    }
    
    .product-features__column {
        padding: 20px;
    }
    
    /* Улучшения для lightbox */
    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Улучшения для footer */
    .footer__nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 639px) {
    .container {
        padding: 0 15px;
    }
    
    .header__menu-toggle {
        width: 28px;
        height: 28px;
    }
    
    .header__nav.active {
        padding: 15px;
    }
    
    .header__nav-link {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .hero__content {
        padding: 30px 20px;
    }
    
    .catalog__item-image {
        height: 220px;
        padding: 10px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section__text {
        padding: 0 5px;
    }
    
    .product-requirements .section__text {
        padding: 20px 15px;
    }
    
    .product-buy__buttons,
    .product-details__buttons {
        gap: 12px;
    }
    
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
}

@media (max-width: 479px) {
    .header__menu-toggle {
        width: 26px;
        height: 26px;
    }
    
    .header__nav.active {
        padding: 12px;
    }
    
    .header__nav-link {
        padding: 10px 12px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .hero__content {
        padding: 25px 15px;
    }
    
    .catalog__item-image {
        height: 200px;
        padding: 8px;
    }
    
    .catalog__item-content {
        padding: 12px;
    }
    
    .section {
        padding: 25px 0;
    }
    
    .product-requirements .section__text {
        padding: 18px 12px;
    }
    
    .btn {
        min-height: 42px;
        padding: 10px 18px;
        font-size: 15px;
    }
    
    /* Улучшения для видео на очень маленьких экранах */
    .video-wrapper {
        padding-bottom: 56.25%;
    }
    
    /* Улучшения для изображений */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Улучшения для текста */
    .section__text p {
        margin-bottom: 15px;
    }
    
    /* Улучшения для списков */
    ul, ol {
        padding-left: 20px;
    }
    
    li {
        margin-bottom: 8px;
    }
}

/* Предотвращение горизонтального скролла */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Улучшения для touch-устройств */
@media (hover: none) and (pointer: coarse) {
    .header__nav-link:hover {
        background: rgba(255, 140, 66, 0.15);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .catalog__item:hover {
        transform: none;
    }
}

/* Улучшения для landscape ориентации на мобильных */
@media (max-width: 959px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero__content {
        padding: 30px 25px;
    }
}

