/*
Theme Name: HITERS
File: Header - White Background Style
Version: 2.0.0
Description: Clean white header for co-packing theme
*/

/* Header - White Background */
.site-header {
    background: #FFFFFF !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
}

.site-header .site-logo {
    position: relative;
    left: 0;
    margin-right: 40px;
}

/* Logo Styling */
.site-logo img,
.site-logo .logo-image {
    max-height: 50px;
    width: auto;
}

/* Navigation Menu */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 48px;
}

/* Сдвиг навигации вправо */
.main-nav {
    margin-left: 150px;
}

.main-nav a {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E31E24;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #E31E24;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Toggle Button */
.mobile-sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-sidebar-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-sidebar-toggle:hover span {
    background: #E31E24;
}

/* Add padding to main content to account for fixed header */
#main-content {
    padding-top: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .mobile-sidebar-toggle {
        display: flex;
    }

    .site-header .header-inner {
        padding: 0;
    }

    #main-content {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .site-header .header-inner {
        padding: 0;
    }

    .site-logo img,
    .site-logo .logo-image {
        max-height: 40px;
    }

    #main-content {
        padding-top: 0;
    }
}
