/* Menu Header Lightbox - Start */
.menu-header-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0px;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background: var(--white);
    position: fixed;
    top: var(--header-height);
    left: -120vw;
    width: 375px;
    max-width: 100%;
    z-index: 99999;
    box-shadow: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.menu-header-wrapper.active {
    left: 0vw;
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}
.menu-header-background {
    position: fixed;
    top: var(--header-height);
    display: flex;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    z-index: 10;
    background: rgb(0 0 0 / 10%);
}
.menu-header {
    display: flex;
    flex-direction: column;
    width: 100%;
	background: var(--white);
    position: relative;
    top: 0px;
    z-index: 30;
    box-sizing: border-box;
}
.menu-block-middle {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.side-menu .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.side-menu.side-menu-1 {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.side-menu.side-menu-2 {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
/* Menu Header Lightbox - End */


/* Контакти - Start */
.menu-section.menu-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.menu-section.menu-contacts .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.menu-section.menu-contacts .contact-label {
    color: #b4b8bb;
}

.contact-value {
    font-family: var(--font-family-2);
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}
/* Контакти - End */

/* Соціальні мережі - Start */
.menu-section.menu-social {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	padding-bottom: 20px;
}
.menu-section-title {
	color: #b4b8bb;
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 240px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 0.3s ease;
}
.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
/* Соціальні мережі - End */