* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(220 40% 5%);
    --foreground: hsl(200 100% 98%);
    --card: hsl(220 35% 8%);
    --card-foreground: hsl(200 100% 98%);
    --primary: hsl(195 100% 50%);
    --primary-foreground: hsl(220 40% 5%);
    --secondary: hsl(200 70% 15%);
    --secondary-foreground: hsl(195 100% 85%);
    --muted: hsl(220 30% 12%);
    --muted-foreground: hsl(200 20% 60%);
    --accent: hsl(180 100% 50%);
    --accent-foreground: hsl(220 40% 5%);
    --border: hsl(200 30% 18%);
    --input: hsl(200 30% 18%);
    --ring: hsl(195 100% 50%);
    --neon-cyan: hsl(180 100% 50%);
    --neon-blue: hsl(195 100% 50%);
    --deep-blue: hsl(220 40% 5%);
    --mid-blue: hsl(200 70% 15%);
    --gradient-primary: linear-gradient(135deg, hsl(195 100% 50% / 0.2), hsl(180 100% 50% / 0.1));
    --gradient-hero: linear-gradient(180deg, hsl(220 40% 5%), hsl(200 70% 10%));
    --gradient-card: linear-gradient(135deg, hsl(220 35% 8%), hsl(200 40% 12%));
    --shadow-glow: 0 0 30px hsl(195 100% 50% / 0.3);
    --shadow-card: 0 10px 40px hsl(0 0% 0% / 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 0.75rem;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.text-glow {
    text-shadow: 0 0 20px hsl(180 100% 50% / 0.5);
}

.border-glow {
    box-shadow: 0 0 20px hsl(180 100% 50% / 0.3);
}

.card-glow {
    box-shadow: 0 0 30px hsl(195 100% 50% / 0.2), 0 10px 40px hsl(0 0% 0% / 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(195 100% 50% / 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--primary);
    box-shadow: 0 0 15px hsl(195 100% 50% / 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.header {
    background: hsl(220 40% 5% / 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(200 30% 18% / 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    gap: 15px;
}

/* Обновляем стили для логотипа */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: hsl(195 100% 50%);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Убираем старую линию */
.logo::after {
    display: none !important;
}

/* Создаём новую линию ТОЛЬКО под текстом */
.logo__text {
    position: relative;
    display: inline-block;
}

/* Линия под текстом — теперь её ширина = 100% от текста */
.logo__text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%; /* 100% от ширины текста, а не от всего лого! */
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

/* На телефоне делаем тоньше и ближе */
@media (max-width: 992px) {
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .logo__img {
        margin-bottom: 5px;
    }
    
    .logo__text {
        text-align: center;
        position: relative;
    }
    
    .logo__text::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px; /* Фиксированная ширина */
        height: 1px;
        background: var(--neon-cyan);
    }
}
.header__order-btn {
    display: inline-flex;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav {
    display: flex;
    position: relative;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav__link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--foreground);
}

.nav__link:hover::before {
    width: 100%;
}

.nav__link--active {
    color: var(--primary);
}

.nav__link--active::before {
    width: 100%;
    background: var(--primary);
}

.compare-icon {
    color: var(--primary);
}

.sidebar-search {
    margin: 0;
}

.search-box {
    display: flex;
    gap: 0;
    align-items: center;
    width: auto;
    min-width: 200px;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem) 0 0 calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
}

.search-box input::placeholder {
    color: hsl(200 20% 40%);
}

.search-box button {
    padding: 10px 20px;
    background: var(--primary);
    border: none;
    border-radius: 0 calc(var(--radius) - 0.25rem) calc(var(--radius) - 0.25rem) 0;
    color: var(--primary-foreground);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.search-box button:hover {
    background: hsl(195 100% 45%);
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, hsl(195 100% 50% / 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, hsl(180 100% 50% / 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 0;
    position: relative;
}

.hero-slide__content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: hsl(220 35% 8% / 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18% / 0.5);
    box-shadow: var(--shadow-card);
}

.hero-slide__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-slide__text {
    font-size: 1.3rem;
    color: var(--muted-foreground);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.products {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid hsl(200 30% 18%);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), 0 0 30px hsl(195 100% 50% / 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, hsl(220 40% 5% / 0.8));
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 25px;
}

.product-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--foreground);
}

.product-card__desc {
    color: var(--muted-foreground);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-card__actions {
    display: flex;
    gap: 10px;
}

.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, hsl(195 100% 50% / 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text p {
    color: var(--muted-foreground);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about__features {
    list-style: none;
    margin-top: 30px;
}

.about__features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--foreground);
}

.about__features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.about__image {
    position: relative;
}

.about__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18%);
}

.reviews {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.reviews__slider {
    position: relative;
    padding: 0 60px;
}

.reviews-swiper {
    padding: 30px 0 50px;
}

.review-slide {
    height: auto;
}

.review-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    border: 1px solid hsl(200 30% 18%);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    border: 2px solid hsl(200 30% 18%);
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 5px;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-size: 1rem;
}

.review-card__date {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.review-card__body {
    color: var(--muted-foreground);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card__footer {
    padding-top: 20px;
    border-top: 1px solid hsl(200 30% 18%);
}

.review-card__farm {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.reviews__cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid hsl(200 30% 18%);
}

.reviews__cta p {
    color: var(--muted-foreground);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer {
    background: hsl(220 40% 5%);
    border-top: 1px solid hsl(200 30% 18%);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer__text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer__title {
    color: var(--foreground);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
    color: var(--muted-foreground);
}

.footer__list a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer__list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid hsl(200 30% 18%);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== БУРГЕР-МЕНЮ ===== */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-btn__line {
    width: 100%;
    height: 3px;
    background: var(--foreground);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-btn.active .burger-btn__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active .burger-btn__line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-btn__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Навигация всегда видима */
.nav {
    display: flex;
}

/* Затемнение фона */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ (до 992px) ===== */
@media (max-width: 992px) {
    /* Показываем бургер */
    .burger-btn {
        display: flex;
        order: 1;
    }
    
    /* Горизонтальный хеддер */
    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        min-height: 70px;
    }
    
    .logo {
        flex: 1;
        order: 2;
        text-align: center;
    }
    
    .header__order-btn {
        order: 3;
        flex-shrink: 0;
        padding: 10px 15px;
        font-size: clamp(0.85rem, 2vw, 0.9rem);
    }
    
    /* Скрываем навигацию по умолчанию */
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(320px, 85%);
        height: 100vh;
        background: var(--background);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 80px clamp(20px, 5vw, 25px) 30px;
    }
    
    .nav.active {
        left: 0;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Вертикальное меню */
    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav__item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav__item:last-child {
        border-bottom: none;
    }
    
    /* Ссылки в меню */
    .nav__link, .catalog-link {
        display: block;
        padding: 18px 0;
        color: var(--muted-foreground);
        text-decoration: none;
        font-size: clamp(1rem, 3vw, 1.1rem);
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
    }
    
    .catalog-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .catalog-link::after {
        content: '▾';
        transition: transform 0.3s ease;
    }
    
    .catalog-link.active::after {
        transform: rotate(180deg);
    }
    
    /* Выпадающее меню каталога */
    .dropdown-menu {
        display: none;
        padding-left: 20px;
        list-style: none;
        margin: 10px 0;
    }
    
    .dropdown-menu.active {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 15px 0;
        color: hsl(200 20% 70%);
        text-decoration: none;
    }
    
    .dropdown-menu a:hover {
        color: var(--primary);
    }
    
    /* Поиск в мобильном меню */
    .nav__item--search {
        padding: 20px 0;
    }
    
    .search-box {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .search-box input {
        width: 100%;
        padding: 14px;
        border-radius: 8px;
    }
    
    .search-box button {
        width: 100%;
        padding: 14px;
        border-radius: 8px;
        margin-top: 5px;
    }
    
    /* Блокируем скролл при открытом меню */
    body.menu-open {
        overflow: hidden;
    }
}

/* ===== ДЕСКТОПНАЯ ВЕРСИЯ (от 993px) ===== */
@media (min-width: 993px) {
    /* Скрываем бургер и оверлей */
    .burger-btn, .nav-overlay {
        display: none;
    }
    
    /* Горизонтальное меню */
    .nav {
        display: flex;
        position: relative;
        height: auto;
        width: auto;
        background: transparent;
        padding: 0;
    }
    
    .nav__list {
        display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }
    
    .nav__item {
        position: relative;
        border-bottom: none;
        width: auto;
    }
    
    /* Ссылки в меню */
    .nav__link, .catalog-link {
        color: var(--muted-foreground);
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        font-size: 1rem;
        transition: var(--transition-smooth);
    }
    
    .nav__link:hover, .catalog-link:hover {
        color: var(--foreground);
    }
    
    .nav__link::before, .catalog-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    .nav__link:hover::before, .catalog-link:hover::before {
        width: 100%;
    }
    
    /* Каталог с выпадающим меню */
    .catalog-link {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .catalog-link::after {
        content: '▾';
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .nav__item.has-dropdown:hover .catalog-link::after {
        transform: rotate(180deg);
    }
    
    /* Выпадающее меню (появляется при наведении) */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: hsl(220 40% 8%);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        padding: 10px 0;
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        display: block;
    }
    
    .nav__item.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 20px;
        width: 12px;
        height: 12px;
        background: hsl(220 40% 8%);
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
        transform: rotate(45deg);
    }
    
    .dropdown-menu li {
        padding: 0;
        margin: 0;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: hsl(200 20% 70%);
        text-decoration: none;
        transition: all 0.2s ease;
        font-size: 0.95rem;
    }
    
    .dropdown-menu a:hover {
        color: var(--primary);
        background: hsl(195 100% 50% / 0.1);
        padding-left: 25px;
    }
    
    /* Поиск на десктопе */
    .search-box {
        display: flex;
        align-items: center;
        gap: 0;
    }
    
    .search-box input {
        width: 200px;
        padding: 10px 15px;
        background: hsl(220 40% 10%);
        border: 1px solid var(--border);
        border-radius: 8px 0 0 8px;
        color: var(--foreground);
        font-size: 0.95rem;
        transition: var(--transition-smooth);
    }
    
    .search-box input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    }
    
    .search-box input::placeholder {
        color: hsl(200 20% 45%);
    }
    
    .search-box button {
        padding: 10px 20px;
        background: linear-gradient(135deg, hsl(195 100% 50%), hsl(180 100% 50%));
        border: none;
        border-radius: 0 8px 8px 0;
        color: var(--primary-foreground);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    
    .search-box button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px hsl(195 100% 50% / 0.3);
    }
}

/* ===== ОБЩИЕ СТИЛИ ===== */
.image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: hsl(200 30% 12%);
    color: var(--muted-foreground);
    border-radius: 8px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.product-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--primary);
}

.spec-item {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.btn-success {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: hsl(200 30% 12%);
    border-radius: 8px 8px 0 0;
}

.product-card__actions {
    display: flex;
    gap: 10px;
}

.product-card__actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

/* ===== АДАПТИВНЫЕ СТИЛИ ===== */
@media (max-width: 640px) {
    .header__inner {
        padding: 10px 15px;
        gap: 10px;
        min-height: 60px;
    }
    
    /* Уменьшаем логотип */
    .logo__img {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .logo__text {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        white-space: nowrap;
    }
    
    /* Делаем кнопку "Заказать" компактнее */
    .header__order-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: auto;
        flex-shrink: 0;
    }
    
    /* Настраиваем бургер-кнопку */
    .burger-btn {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }
    
    .burger-btn__line {
        height: 2px;
    }
    
    /* Уменьшаем отступы в меню */
    .nav {
        width: 280px;
        padding: 70px 20px 20px;
    }
    
    /* Адаптируем каталог товаров на главной */
    .products__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card__actions {
        flex-direction: column;
    }
    
    .product-card__actions .btn {
        width: 100%;
    }
}

/* ===== АДАПТИВНЫЙ HERO ===== */
.hero {
    position: relative;
    min-height: clamp(380px, 70vh, 620px);
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(380px, 70vh, 620px);
    padding: clamp(40px, 8vh, 80px) 0;
    position: relative;
}

.hero-slide__content {
    text-align: center;
    max-width: 800px;
    padding: clamp(20px, 4vw, 40px);
    background: hsl(220 35% 8% / 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18% / 0.5);
    box-shadow: var(--shadow-card);
}

.hero-slide__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(15px, 3vh, 20px);
    background: linear-gradient(135deg, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-slide__text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--muted-foreground);
    margin-bottom: clamp(20px, 4vh, 30px);
    line-height: 1.6;
}

.btn-hero {
    padding: clamp(12px, 2vw, 16px) clamp(30px, 5vw, 40px);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* ===== АДАПТИВНЫЙ ABOUT ===== */
.about {
    padding: clamp(50px, 10vh, 100px) 0;
    position: relative;
    overflow: hidden;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
}

@media (min-width: 993px) {
    .about__content {
        grid-template-columns: 1fr 1fr;
    }
}

.about__text p {
    color: var(--muted-foreground);
    margin-bottom: clamp(15px, 3vh, 20px);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    max-width: 100%;
}

@media (min-width: 993px) {
    .about__text p {
        max-width: 90%;
    }
}

/* ===== АДАПТИВНЫЕ КАРТОЧКИ ТОВАРОВ ===== */
.products {
    padding: clamp(50px, 10vh, 100px) 0;
    background: var(--gradient-hero);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(12px, 3vw, 24px);
}

.product-card__image {
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ===== АДАПТИВНЫЕ ОТЗЫВЫ ===== */
.reviews {
    padding: clamp(50px, 10vh, 100px) 0;
    background: var(--gradient-hero);
}

.reviews__slider {
    position: relative;
    padding: 0 clamp(20px, 5vw, 60px);
}

.review-card {
    padding: clamp(20px, 4vw, 30px);
}

.review-card__name {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* ===== АДАПТИВНЫЙ ФУТЕР ===== */
.footer {
    padding: clamp(40px, 8vh, 80px) 0 clamp(20px, 4vh, 30px);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(30px, 6vw, 50px);
    margin-bottom: clamp(30px, 6vh, 50px);
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* ===== ТИПОГРАФИКА ===== */
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(30px, 6vh, 50px);
    background: linear-gradient(135deg, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

/* ===== КОНТЕЙНЕР ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(12px, 4vw, 24px);
}

/* ===== ФОКУС-СТИЛИ ДЛЯ ДОСТУПНОСТИ ===== */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== КОНТРАСТ ДЛЯ WCAG AA ===== */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* ===== КАТАЛОГ ===== */
.catalog-header {
    background: linear-gradient(135deg, hsl(220 40% 5%), hsl(200 70% 10%));
    padding: clamp(40px, 8vh, 80px) 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.catalog-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--foreground);
    margin-bottom: clamp(10px, 2vh, 15px);
    line-height: 1.2;
}

.catalog-header p {
    color: var(--muted-foreground);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.catalog-container {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) clamp(12px, 4vw, 20px);
}

.catalog-sidebar {
    flex: 0 0 min(280px, 100%);
    background: var(--card);
    border-radius: var(--radius);
    padding: clamp(15px, 3vw, 25px);
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    color: var(--foreground);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: clamp(15px, 3vh, 20px);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item {
    display: block;
    width: 100%;
    padding: clamp(10px, 2vw, 12px) 15px;
    background: hsl(200 30% 12%);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted-foreground);
    text-align: left;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.filter-item:hover {
    background: hsl(200 30% 15%);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(5px);
}

.filter-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    transform: translateX(5px);
}

.filter-count {
    float: right;
    background: hsl(200 30% 20%);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.filter-item.active .filter-count {
    background: var(--primary-foreground);
    color: var(--primary);
}

.sidebar-search {
    margin-top: 20px;
}

.catalog-content {
    flex: 1;
    min-width: 0;
}

.catalog-info {
    background: var(--card);
    border-radius: var(--radius);
    padding: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vh, 30px);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-count {
    color: var(--muted-foreground);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.catalog-count strong {
    color: var(--foreground);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.current-filter {
    background: hsl(200 30% 15%);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--primary);
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filter {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.clear-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(15px, 3vw, 30px);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(40px, 8vh, 60px);
    color: var(--muted-foreground);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-card__filter {
    display: inline-block;
    padding: 4px 10px;
    background: hsl(200 30% 15%);
    border-radius: 4px;
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Адаптивность каталога */
@media (max-width: 992px) {
    .catalog-container {
        flex-direction: column;
        gap: clamp(20px, 4vh, 30px);
    }
    
    .catalog-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: clamp(15px, 3vw, 20px);
    }
}

@media (max-width: 768px) {
    .catalog-header h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .catalog-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card__actions {
        flex-direction: column;
    }
    
    .filter-item {
        padding: 10px 15px;
    }
}
.catalog-header {
    background: linear-gradient(135deg, hsl(220 40% 5%), hsl(200 70% 10%));
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid hsl(200 30% 18%);
}

.catalog-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.catalog-header p {
    color: hsl(200 20% 70%);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.catalog-sidebar {
    flex: 0 0 280px;
    background: hsl(220 35% 8%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid hsl(200 30% 18%);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid hsl(195 100% 50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title::before {
    content: '';
    font-size: 1.2rem;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: 8px;
    color: hsl(200 20% 70%);
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-item:hover {
    background: hsl(200 30% 15%);
    border-color: hsl(195 100% 50%);
    color: hsl(195 100% 50%);
    transform: translateX(5px);
}

.filter-item.active {
    background: hsl(195 100% 50%);
    border-color: hsl(195 100% 50%);
    color: hsl(220 40% 5%);
    font-weight: 600;
    transform: translateX(5px);
}

.filter-count {
    float: right;
    background: hsl(200 30% 20%);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: hsl(200 20% 70%);
}

.filter-item.active .filter-count {
    background: hsl(220 40% 5%);
    color: white;
}

.sidebar-search {
    margin-top: 20px;
}

.search-box {
    display: flex;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: 8px 0 0 8px;
    color: white;
    font-size: 0.95rem;
}

.search-box button {
    padding: 12px 20px;
    background: hsl(195 100% 50%);
    border: none;
    border-radius: 0 8px 8px 0;
    color: hsl(220 40% 5%);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.catalog-content {
    flex: 1;
}

.catalog-info {
    background: hsl(220 35% 8%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid hsl(200 30% 18%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-count {
    color: hsl(200 20% 70%);
    font-size: 1rem;
}

.catalog-count strong {
    color: white;
    font-size: 1.2rem;
}

.current-filter {
    background: hsl(200 30% 15%);
    padding: 8px 15px;
    border-radius: 20px;
    color: hsl(195 100% 50%);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-filter::before {
    content: '';
}

.clear-filter {
    background: transparent;
    border: 1px solid hsl(200 30% 18%);
    color: hsl(200 20% 70%);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.clear-filter:hover {
    border-color: hsl(195 100% 50%);
    color: hsl(195 100% 50%);
}

.clear-filter::before {
    content: '🗑️';
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: hsl(200 20% 60%);
    font-size: 1.2rem;
    background: hsl(220 35% 8%);
    border-radius: 12px;
    border: 1px solid hsl(200 30% 18%);
}

.product-card {
    background: hsl(220 35% 8%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid hsl(200 30% 18%);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: hsl(195 100% 50%);
}

.product-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: hsl(200 30% 12%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: hsl(200 20% 60%);
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-card__content {
    padding: 20px;
}

.product-card__title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__title a:hover {
    color: hsl(195 100% 50%);
}

.product-card__desc {
    color: hsl(200 20% 70%);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-card__filter {
    display: inline-block;
    padding: 4px 10px;
    background: hsl(200 30% 15%);
    border-radius: 4px;
    color: hsl(195 100% 50%);
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-card__actions {
    display: flex;
    gap: 10px;
}

.product-card__actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid hsl(200 30% 18%);
    color: hsl(200 20% 70%);
}

.btn-secondary:hover {
    border-color: hsl(195 100% 50%);
    color: hsl(195 100% 50%);
}

.btn-primary {
    background: hsl(195 100% 50%);
    color: hsl(220 40% 5%);
}

.btn-primary:hover {
    background: hsl(195 100% 40%);
}

.btn-success {
    background-color: #4CAF50;
    color: white;
    border: none;
}

@media (max-width: 992px) {
    .catalog-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .catalog-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-header h1 {
        font-size: 2.2rem;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .catalog-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card__actions {
        flex-direction: column;
    }
    
    .filter-item {
        padding: 10px 15px;
    }
}

