/* ============================================
   HEADER STYLES - NEW DESIGN
   ============================================ */

/* Banner - Removed */

/* Main Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    gap: 32px;
}

/* Logo Section */
.header-logo-section {
    flex-shrink: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo img {
    max-width: 140px;
    height: auto;
}

/* Navigation */
.header-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FF6600;
    background: rgba(255, 102, 0, 0.05);
}

.nav-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.megamenu-trigger.active i,
.nav-link:hover i {
    transform: rotate(180deg);
}

.nav-separator {
    width: 1px;
    height: 24px;
    background: #e0e0e0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-btn-phone {
    background: #FFF4E6;
    color: #0A0A0A;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.header-btn-phone:hover {
    background: #FFE8CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.header-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: #333;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.15);
}

.header-phone-link i {
    color: #FF6600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-phone-link span {
    color: #333;
    transition: all 0.3s ease;
}

.header-phone-link:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.header-phone-link:hover i {
    color: #FF6600;
    transform: scale(1.1);
}

.header-phone-link:hover span {
    color: #FF6600;
}

/* Dark Mode Toggle - Modern & Elegant */
.dark-mode-toggle {
    position: relative;
    width: 56px;
    height: 32px;
    background: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
    overflow: hidden;
}

.dark-mode-toggle:hover {
    border-color: #FF6600;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.dark-mode-toggle:active {
    transform: scale(0.95);
}

.dark-mode-toggle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
}

.dark-mode-icon {
    position: absolute;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.sun-icon {
    right: 6px;
    color: #f59e0b;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    left: 6px;
    color: #6366f1;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Dark Mode Active State */
.dark-mode-toggle.active {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: #475569;
}

.dark-mode-toggle.active .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.dark-mode-toggle.active .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.dark-mode-toggle.active::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dark-mode-toggle.active::before {
    right: 2px;
    left: auto;
    background: #f8fafc;
}

.header-btn-primary {
    background: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.25);
    border: none;
}

.header-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.35);
    background: linear-gradient(135deg, #FF8533 0%, #FF6600 100%);
}

/* ============================================
   MEGAMENU STYLES - NEW DESIGN
   ============================================ */

/* Overlay */
.megamenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.megamenu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Megamenu Container */
.megamenu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.megamenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.megamenu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    display: flex;
    min-height: 500px;
    max-height: calc(100vh - 120px);
}

/* Sidebar */
.megamenu-sidebar {
    width: 320px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.megamenu-sidebar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
    position: relative;
}

.megamenu-sidebar-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF6600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.megamenu-sidebar-item:hover,
.megamenu-sidebar-item.active {
    background: rgba(255, 102, 0, 0.12);
}

.megamenu-sidebar-item.active::before,
.megamenu-sidebar-item:hover::before {
    opacity: 1;
}

.sidebar-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.megamenu-sidebar-item.active .sidebar-item-icon,
.megamenu-sidebar-item:hover .sidebar-item-icon {
    background: rgba(255, 102, 0, 0.2);
}

.sidebar-item-icon i {
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.megamenu-sidebar-item.active .sidebar-item-icon i,
.megamenu-sidebar-item:hover .sidebar-item-icon i {
    color: #FF6600;
}

.sidebar-item-content {
    flex: 1;
}

.sidebar-item-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.sidebar-item-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.sidebar-item-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.megamenu-sidebar-item.active .sidebar-item-arrow,
.megamenu-sidebar-item:hover .sidebar-item-arrow {
    opacity: 1;
    transform: translateX(-4px);
}

.sidebar-item-arrow i {
    font-size: 12px;
    color: #ffffff;
}

/* Content Area */
.megamenu-content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    position: relative;
}

.megamenu-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.megamenu-panel.active {
    display: block;
}

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

/* Panel Grid (All Products) */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.panel-category {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 102, 0, 0.15);
}

.category-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 133, 51, 0.05) 100%);
    border-radius: 8px;
}

.category-icon i {
    font-size: 18px;
    color: #FF6600;
}

.category-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-right: 12px;
}

.category-links a::before {
    content: '';
    position: absolute;
    right: 0;
    width: 4px;
    height: 4px;
    background: #FF6600;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-links a:hover {
    color: #FF6600;
    padding-right: 16px;
}

.category-links a:hover::before {
    opacity: 1;
}

/* Products Grid */
.panel-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.3);
}

.product-card.featured {
    border-color: rgba(255, 102, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.02) 0%, rgba(255, 133, 51, 0.01) 100%);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: #FF6600;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 1;
}

.product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 133, 51, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
}

.product-icon i {
    font-size: 28px;
    color: #FF6600;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px 0;
}

.product-info p {
    font-size: 13px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.product-specs i {
    font-size: 12px;
    color: #FF6600;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.price-label {
    font-size: 11px;
    color: #999;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
}

.price-unit {
    font-size: 11px;
    color: #999;
}

.product-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
}

.product-card:hover .product-arrow {
    transform: translateX(-4px);
    color: #FF6600;
}

/* Docs Panel */
.panel-docs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.docs-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.docs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 133, 51, 0.04) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 0, 0.12);
}

.docs-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
}

.docs-icon i {
    font-size: 20px;
    color: #FF6600;
}

.docs-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.docs-subtitle {
    font-size: 13px;
    color: #666;
    padding-right: 16px;
    margin: 0;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.docs-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.docs-item:last-child {
    border-bottom: none;
}

.docs-item:hover {
    background: rgba(255, 102, 0, 0.05);
    color: #FF6600;
    padding-right: 20px;
}

.docs-item i {
    font-size: 12px;
    color: #999;
    transition: all 0.3s ease;
}

.docs-item:hover i {
    transform: translateX(-4px);
    color: #FF6600;
}

/* ============================================
   MOBILE HEADER
   ============================================ */

.headermobile {
    display: none;
    flex-direction: column;
    width: 100%;
    border-bottom: 2px solid rgba(255, 102, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 99;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.headermobile-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.headermobile-chap img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.headermobile-chap:hover img {
    transform: scale(1.05);
}

.headermobile-rast i {
    font-size: 24px;
    cursor: pointer;
    color: #FF6600;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 6px;
}

.headermobile-rast:hover i {
    background: rgba(255, 102, 0, 0.1);
    transform: rotate(90deg);
}

.menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 100;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 0;
    border-left: 3px solid #FF6600;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.12);
    transition: right 0.3s ease;
    overflow-y: auto;
    direction: rtl;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 14px 20px;
    border-bottom: 2px solid rgba(255, 102, 0, 0.15);
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 133, 51, 0.02) 100%);
}

.menu-top i {
    font-size: 26px;
    cursor: pointer;
    color: #FF6600;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 6px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-top i:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: rotate(90deg);
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.menu-btn a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 102, 0, 0.03);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.menu-btn a:hover {
    color: #FF6600;
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateX(-4px);
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.15);
}

.menu-btn a i {
    font-size: 13px;
    color: #FF6600;
    transition: transform 0.3s ease;
}

.menu-btn a:hover i {
    transform: translateX(-3px);
}

.menu-btn-auth {
    margin-top: 15px;
    padding: 0 20px 20px 20px;
}

.menu-btn-auth a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    border: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.menu-btn-auth a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #FF8533 0%, #FF6600 100%);
}

.menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99;
    display: none;
}

/* Mobile Menu Products */
#megamobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.megamobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    padding-right: 16px;
    border-right: 2px solid rgba(255, 102, 0, 0.2);
}

.megamobile.show {
    display: flex;
}

.megamobile-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 133, 51, 0.05) 100%);
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 6px;
}

.megamobile-menu-btn:hover,
.megamobile-menu-btn.active {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 133, 51, 0.1) 100%);
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateX(-3px);
}

.megamobile-menu-btn p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #FF6600;
}

.megamobile-menu-btn i {
    font-size: 13px;
    color: #FF6600;
    transition: transform 0.3s ease;
}

.megamobile-menu-btn.active i {
    transform: rotate(180deg);
}

.megamobile-menu-products {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-right: 6%;
    padding-right: 14px;
    margin-top: 6px;
    border-right: 2px solid rgba(255, 102, 0, 0.2);
}

.megamobile-menu-products.show {
    display: flex;
}

.megamobile-menu-product {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.megamobile-menu-product p {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #FF6600;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.megamobile-menu-product a {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.megamobile-menu-product a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6600 0%, #FF8533 100%);
    border-radius: 0 6px 6px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.megamobile-menu-product a:hover {
    color: #FF6600;
    background: rgba(255, 102, 0, 0.08);
    padding-right: 18px;
    transform: translateX(-4px);
}

.megamobile-menu-product a:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 1210px) {
    .main-header {
        display: none;
    }
    
    .headermobile {
        display: flex;
    }
    
    .megamenu {
        display: none !important;
    }
}

@media screen and (max-width: 1400px) {
    .header-container {
        padding: 14px 24px;
    }
    
    .megamenu-wrapper {
        max-width: 1100px;
    }
}

@media screen and (max-width: 1024px) {
    .header-navigation {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .panel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .panel-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .panel-docs {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .panel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .panel-products {
        grid-template-columns: 1fr;
    }
}
