/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
    --primary: #006363;
    --primary-dark: #004d4d;
    --primary-light: #008080;
    --primary-foreground: #ffffff;
    --accent: #ffc107;
    --accent-green: #00a651;
    --foreground: #1a1a1a;
    --foreground-secondary: #374151;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --mega-menu-bg: #fafafa;
    --mega-menu-tab: #f3f4f6;
    --mega-menu-tab-hover: #ffffff;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.site-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.container-new-header {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
}

.contact-link:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.5;
}

.main-nav {
    padding: 1.125rem 1rem;
    position: relative;
    z-index: 1001;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-foreground);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1002;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover .logo-img {
    transform: scale(1.02);
}

.logo-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--foreground);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1001;
}

.nav-button,
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.125rem;
    font-weight: 600;
    font-size: 0.9375rem; 
    color: var(--primary-foreground);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1001;
    line-height: 1.6;
    white-space: nowrap;
}

.nav-button:hover,
.nav-link:hover,
.nav-button.active {
    background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1600px) {
    .nav-button,
    .nav-link {
        padding: 0.625rem 1rem;
    }
    
    .nav-links {
        gap: 0.375rem;
    }
}

@media (max-width: 1440px) {
    .nav-button,
    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem; 
    }
    
    .nav-links {
        gap: 0.25rem;
    }
}

@media (max-width: 1200px) {
    .nav-button,
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .nav-links {
        gap: 0.125rem;
    }
    
    .logo-img {
        height: 44px;
    }
}

/* 1025px - 1100px: минимум перед мобилкой */
@media (max-width: 1100px) {
    .nav-button,
    .nav-link {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
    }
    
    .nav-links {
        gap: 0;
    }
}

/* Полностью мобильная версия */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Дополнительные breakpoints для контейнера */
@media (max-width: 1600px) {
    .container-new-header {
        max-width: 1440px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1440px) {
    .container-new-header {
        max-width: 1280px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .container-new-header {
        max-width: 1140px;
        padding: 0 1.25rem;
    }
}

/* Адаптив для логотипа */
@media (max-width: 1440px) {
    .logo-img {
        height: 48px;
    }
}

@media (max-width: 1200px) {
    .logo-img {
        height: 44px;
    }
}

@media (max-width: 1100px) {
    .logo-img {
        height: 42px;
    }
}

@media (max-width: 1024px) {
    .logo-img {
        height: 40px;
    }
}

/* Top Bar адаптив */
@media (max-width: 1440px) {
    .contact-info {
        gap: 1.75rem;
    }
}

@media (max-width: 1200px) {
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-link {
        font-size: 0.8125rem;
    }
}

@media (max-width: 1100px) {
    .contact-info {
        gap: 1rem;
    }
    
    .contact-link {
        font-size: 0.75rem;
    }
    
    .icon {
        width: 0.875rem;
        height: 0.875rem;
    }
}

@media (max-width: 1024px) {
    .top-bar {
        padding: 0.5rem;
    }
}

.nav-button:hover,
.nav-link:hover,
.nav-button.active {
    background-color: rgba(255, 255, 255, 0.12);
}

.chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-button.active .chevron {
    transform: rotate(90deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mega Menu Panel */
.mega-menu-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 85px;
    background-color: var(--mega-menu-bg);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: none;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mega-menu-panel.open {
    display: block;
    opacity: 1;
}

.mega-menu-content {
    display: flex;
    min-height: 550px;
    max-height: 650px;
}

/* Sidebar */
.mega-menu-sidebar {
    width: 340px;
    background-color: var(--mega-menu-tab);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    overflow-y: auto;
    border-right: 1px solid var(--border);
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover {
    background-color: var(--mega-menu-tab-hover);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.category-item.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.category-image {
    width: 52px;
    height: 52px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover .category-image {
    transform: scale(1.05);
    border-color: var(--primary);
}

.category-item.active .category-image {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-title {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.category-description {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: -0.005em;
    line-height: 1.6;
}

.category-item.active .category-description {
    color: rgba(255, 255, 255, 0.85);
}

.category-chevron {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--muted-foreground);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 0.375rem;
}

.category-item:hover .category-chevron {
    opacity: 1;
    transform: translateX(0.25rem);
}

.category-item.active .category-chevron {
    opacity: 1;
    color: var(--primary-foreground);
    transform: translateX(0.25rem);
}

/* Main Content */
.mega-menu-main {
    flex: 1;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);
    overflow-y: auto;
}

.mega-menu-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--muted-foreground);
    text-align: center;
    padding: 2.5rem;
}

.placeholder-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.75rem;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.35; }
}

.placeholder-title {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.placeholder-subtitle {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 0.625rem;
    opacity: 0.65;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Content Header */
.content-header {
    margin-bottom: 2.5rem;
    padding: 2.5rem 2.5rem 0 2.5rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.content-description {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--foreground-secondary);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.content-description a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid var(--primary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-description a:hover {
    opacity: 0.75;
    border-bottom-color: transparent;
}

/* Subcategories Content */
.subcategories-content {
    padding: 2.5rem;
    padding-top: 0;
}

/* Product Cards */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.product-card {
    background: white;
    border: 2px solid var(--border-light);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.product-image {
    margin-bottom: 1.75rem;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 220px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.product-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--foreground);
    color: var(--foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
}

.product-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Content Split Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    padding: 2.5rem;
}

.content-left {
    position: sticky;
    top: 2rem;
}

.feature-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: var(--shadow-md);
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-right .content-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.content-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--foreground-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Specs List */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.spec-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.spec-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.highlight {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.benefit-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.benefit-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Content Button */
.content-btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border: 2px solid var(--foreground);
    color: var(--foreground);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    line-height: 1.6;
}

.content-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Subcategories Header */
.subcategories-header {
    margin-bottom: 2.5rem;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 2.5rem 2.5rem 1.25rem 2.5rem;
    z-index: 100;
}

.subcategories-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subcategories-icon {
    width: 3rem;
    height: 3rem;
}

.subcategories-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subcategories-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.subcategories-description {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.subcategories-divider {
    height: 4px;
    width: 5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 1.25rem;
}

/* Subcategories Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.subcategory-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-light);
    background-color: white;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.subcategory-card:hover {
    border-color: var(--primary);
    background-color: rgba(0, 99, 99, 0.04);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    z-index: 50;
}

/* Subcategory Image */
.subcategory-image {
    width: 100%;
    height: 200px;
    background-color: #f9fafb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subcategory-card:hover .subcategory-image img {
    transform: scale(1.05);
}

.subcategory-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subcategory-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.subcategory-text {
    flex: 1;
    min-width: 0;
}

.subcategory-title {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--foreground);
    line-height: 1.3;
    letter-spacing: -0.015em;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.subcategory-card:hover .subcategory-title {
    color: var(--primary);
}

.subcategory-description {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.subcategory-chevron {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--muted-foreground);
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subcategory-card:hover .subcategory-chevron {
    color: var(--primary);
    transform: translateX(0.5rem);
}

.subcategory-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 99, 99, 0.05), rgba(255, 193, 7, 0.05));
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.subcategory-card:hover .subcategory-gradient {
    opacity: 1;
}

/* Scrollbar Styling */
.mega-menu-sidebar::-webkit-scrollbar,
.mega-menu-main::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-sidebar::-webkit-scrollbar-track,
.mega-menu-main::-webkit-scrollbar-track {
    background: transparent;
}

.mega-menu-sidebar::-webkit-scrollbar-thumb,
.mega-menu-main::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
}

.mega-menu-sidebar::-webkit-scrollbar-thumb:hover,
.mega-menu-main::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* Responsive - Tablets */
@media (max-width: 1440px) {
    .container-new-header {
        max-width: 1280px;
        padding: 0 1.5rem;
    }
    
    .mega-menu-sidebar {
        width: 300px;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 1024px) {
    .container-new-header {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .mega-menu-panel {
        top: 115px;
    }
    
    .mega-menu-content {
        flex-direction: column;
        max-height: calc(100vh - 135px);
    }
    
    .mega-menu-sidebar {
        width: 100%;
        max-height: 250px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.25rem;
    }
    
    .mega-menu-main {
        padding: 0;
    }
    
    .subcategories-content {
        padding: 1.5rem;
    }
    
    .content-header {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
    
    .subcategories-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .subcategories-grid {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .content-left {
        position: static;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .container-new-header {
        padding: 0 1rem;
    }
    
    .top-bar {
        padding: 0.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .contact-link {
        font-size: 0.8125rem;
    }
    
    .main-nav {
        padding: 0.875rem 0.5rem;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo-title {
        font-size: 1.125rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .logo-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
    
    .mega-menu-panel {
        top: auto;
        bottom: 0;
        max-height: 85vh;
    }
    
    .mega-menu-content {
        max-height: 85vh;
        min-height: auto;
    }
    
    .mega-menu-sidebar {
        max-height: 200px;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .category-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .category-title {
        font-size: 0.875rem;
    }
    
    .category-description {
        font-size: 0.75rem;
    }
    
    .subcategories-content {
        padding: 1.25rem;
    }
    
    .content-header {
        padding: 1.25rem 1.25rem 0 1.25rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .content-description {
        font-size: 0.9375rem;
    }
    
    .subcategories-header {
        padding: 1.25rem 1.25rem 1rem 1.25rem;
    }
    
    .subcategories-grid {
        padding: 0 1.25rem 1.25rem 1.25rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .subcategory-image {
        height: 180px;
    }
    
    .subcategories-title {
        font-size: 1.5rem;
    }
    
    .subcategories-description {
        font-size: 0.9375rem;
    }
    
    .content-split {
        gap: 1.5rem;
        padding: 1.25rem;
    }
    
    .feature-image {
        max-height: 300px;
    }
    
    .specs-list,
    .benefits-list {
        gap: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container-new-header {
        padding: 0 0.75rem;
    }
    
    .contact-link {
        font-size: 0.75rem;
    }
    
    .logo-link {
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.6875rem;
    }
    
    .mega-menu-sidebar {
        max-height: 180px;
        padding: 0.875rem;
    }
    
    .subcategories-content {
        padding: 1rem;
    }
    
    .content-header {
        padding: 1rem 1rem 0 1rem;
    }
    
    .subcategories-header {
        padding: 1rem 1rem 0.75rem 1rem;
    }
    
    .subcategories-grid {
        padding: 0 1rem 1rem 1rem;
    }
    
    .product-cards {
        padding: 0 1rem 1rem 1rem;
    }
    
    .content-split {
        padding: 1rem;
    }
    
    .subcategory-image {
        height: 160px;
    }
    
    .subcategory-content {
        padding: 1.25rem;
    }
    
    .subcategory-title {
        font-size: 0.9375rem;
    }
}


/* ===== MOBILE MENU ===== */
.mobile-menu-container {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-container.open {
    display: block;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background-color: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-container.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--primary);
    color: white;
}

.mobile-menu-back,
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-back {
    margin-right: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-back:active,
.mobile-menu-close:active {
    transform: scale(0.9);
}

.mobile-menu-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex: 1;
    text-align: center;
    margin: 0 0.5rem;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    background-color: white;
    color: var(--foreground);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-item:active {
    background-color: var(--border-light);
}

.mobile-menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-menu-item-text {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--foreground);
}

.mobile-menu-item-description {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: -0.005em;
    line-height: 1.4;
}

.mobile-menu-item-arrow {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-item:active .mobile-menu-item-arrow {
    transform: translateX(4px);
}

/* Mobile Menu Scrollbar */
.mobile-menu-body::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-body::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-menu-content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        max-width: none;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-foreground);
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:active {
    transform: scale(0.9);
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Show burger on mobile */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
}

/* ===== MOBILE MENU (УЛУЧШЕННАЯ ВЕРСИЯ) ===== */
.mobile-menu-container {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-menu-container.open {
    display: block;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background-color: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-container.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--border);
    background-color: var(--primary);
    color: white;
    flex-shrink: 0;
}

.mobile-menu-back,
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.mobile-menu-back {
    margin-right: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-back:active,
.mobile-menu-close:active {
    transform: scale(0.9);
    background-color: rgba(255, 255, 255, 0.15);
}

.mobile-menu-back svg,
.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex: 1;
    text-align: center;
    margin: 0 0.5rem;
    color: white;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    background-color: #fafafa;
}

/* Custom Scrollbar for Mobile Menu */
.mobile-menu-body::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu-body::-webkit-scrollbar-thumb {
    background: rgba(0, 99, 99, 0.3);
    border-radius: 3px;
}

.mobile-menu-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 99, 99, 0.5);
}

/* Firefox scrollbar */
.mobile-menu-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 99, 99, 0.3) #f1f1f1;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background-color: white;
    color: var(--foreground);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.mobile-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--primary);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-item:active::before {
    width: 4px;
}

.mobile-menu-item:active {
    background-color: rgba(0, 99, 99, 0.05);
    transform: translateX(4px);
}

.mobile-menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
}

.mobile-menu-item-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--foreground);
}

.mobile-menu-item-description {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: -0.005em;
    line-height: 1.4;
}

.mobile-menu-item-arrow {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.75rem;
}

.mobile-menu-item:active .mobile-menu-item-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

/* Separator for menu sections */
.mobile-menu-separator {
    height: 8px;
    background-color: #f1f1f1;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

/* Empty state */
.mobile-menu-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: var(--muted-foreground);
    text-align: center;
}

.mobile-menu-empty-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.mobile-menu-empty-text {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-content {
        width: 90%;
    }
    
    .mobile-menu-header {
        padding: 1rem 1.25rem;
    }
    
    .mobile-menu-item {
        padding: 1rem 1.25rem;
    }
    
    .mobile-menu-item-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        max-width: none;
    }
    
    .mobile-menu-header {
        padding: 0.875rem 1rem;
    }
    
    .mobile-menu-title {
        font-size: 1.125rem;
    }
    
    .mobile-menu-item {
        padding: 0.875rem 1rem;
    }
    
    .mobile-menu-item-text {
        font-size: 0.875rem;
    }
    
    .mobile-menu-item-description {
        font-size: 0.75rem;
    }
}

/* ===== GLOBAL CUSTOM SCROLLBAR ===== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 99, 99, 0.4);
    border-radius: 4px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 99, 99, 0.6);
}

::-webkit-scrollbar-thumb:active {
    background: rgba(0, 99, 99, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 99, 99, 0.4) #f1f1f1;
}

/* Thin scrollbars for mega menu */
.mega-menu-sidebar::-webkit-scrollbar,
.mega-menu-main::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-sidebar::-webkit-scrollbar-track,
.mega-menu-main::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.mega-menu-sidebar::-webkit-scrollbar-thumb,
.mega-menu-main::-webkit-scrollbar-thumb {
    background: rgba(0, 99, 99, 0.3);
    border-radius: 3px;
}

.mega-menu-sidebar::-webkit-scrollbar-thumb:hover,
.mega-menu-main::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 99, 99, 0.5);
}

/* Horizontal scrollbar */
::-webkit-scrollbar-horizontal {
    height: 8px;
}

::-webkit-scrollbar-horizontal:track {
    background: #f1f1f1;
}

::-webkit-scrollbar-horizontal:thumb {
    background: rgba(0, 99, 99, 0.4);
    border-radius: 4px;
}

::-webkit-scrollbar-horizontal:thumb:hover {
    background: rgba(0, 99, 99, 0.6);
}

/* Corner where scrollbars meet */
::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

/* Better scrollbar for touch devices */
@media (hover: none) and (pointer: coarse) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(0, 99, 99, 0.3);
        border-radius: 2px;
    }
}


/* Content Split Layout - КОМПАКТНАЯ ВЕРСИЯ */
.content-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Немного меньше картинка, больше текста */
    gap: 2.5rem;
    align-items: center; /* Центрируем по вертикали */
    padding: 2rem 2.5rem;
    max-height: 550px; /* Ограничиваем высоту */
}

.content-left {
    position: static; /* Убираем sticky */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    height: auto;
    max-height: 450px; /* Ограничиваем высоту картинки */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 450px;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Уменьшили с 1.75rem */
    padding-right: 1rem;
}

.content-right .content-title {
    font-size: 1.625rem; /* Уменьшили с 1.875rem */
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.content-text {
    font-size: 0.9375rem; /* Уменьшили с 1rem */
    line-height: 1.6;
    color: var(--foreground-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Specs List - компактная */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem; /* Уменьшили с 1.25rem */
    margin: 1.25rem 0; /* Уменьшили с 2rem */
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.75rem; /* Уменьшили с 0.8125rem */
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.spec-value {
    font-size: 1rem; /* Уменьшили с 1.0625rem */
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.highlight {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.25rem; /* Уменьшили с 1.375rem */
    letter-spacing: -0.02em;
}

/* Benefits List - компактная */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem; /* Уменьшили с 1.5rem */
    margin: 1.25rem 0; /* Уменьшили с 2rem */
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-label {
    font-size: 0.75rem; /* Уменьшили с 0.8125rem */
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.benefit-value {
    font-size: 1rem; /* Уменьшили с 1.0625rem */
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* Content Button - компактная */
.content-btn {
    display: inline-block;
    padding: 0.875rem 2rem; /* Уменьшили с 1rem 2.25rem */
    border: 2px solid var(--foreground);
    color: var(--foreground);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem; /* Уменьшили с 0.9375rem */
    letter-spacing: 0.02em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.content-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Адаптив для split layout */
@media (max-width: 1440px) {
    .content-split {
        gap: 2rem;
        padding: 1.75rem 2rem;
    }
    
    .feature-image {
        max-height: 400px;
    }
    
    .feature-image img {
        max-height: 400px;
    }
    
    .content-right .content-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .content-split {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-image {
        max-height: 350px;
    }
    
    .feature-image img {
        max-height: 350px;
    }
    
    .content-right .content-title {
        font-size: 1.375rem;
    }
    
    .content-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        max-height: none;
    }
    
    .feature-image {
        max-height: 300px;
    }
    
    .feature-image img {
        max-height: 300px;
    }
}

/* Product Cards - компактная версия */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Уменьшили с 2rem */
    padding: 0 2.5rem 2rem 2.5rem;
}

.product-card {
    background: white;
    border: 2px solid var(--border-light);
    padding: 1.5rem 1.25rem; /* Уменьшили с 2rem 1.75rem */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image {
    margin-bottom: 1.25rem; /* Уменьшили с 1.75rem */
    height: 150px; /* Уменьшили с 180px */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 180px; 
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.product-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem; 
    border: 2px solid var(--foreground);
    color: var(--foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem; 
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
}
