/* ==========================================
   GLOBAL HEADER
   ========================================== */

#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent !important;
}

/* Логотип */
#header .site-branding {
    margin-left: -18px;
    margin-right: 28px;
}

/* Прозорі рядки Blocksy */
#header [data-row],
#header [data-row] > div {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Легке затемнення */
#header [data-row="middle"] {
    background: rgba(15, 62, 47, 0.20) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Меню */
#header .menu > li > a {
    color: #17372c !important;
}

#header .menu > li > a:hover,
#header .menu > li.current-menu-item > a,
#header .menu > li.current-menu-ancestor > a {
    color: #a87416 !important;
}

/* Назва сайту */
#header .site-title,
#header .site-title a {
    color: #17372c !important;
}

/* SVG */
#header svg {
    color: #17372c !important;
    fill: currentColor;
}

/* ==========================================
   CONTACTS
   ========================================== */

.contact-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2158ff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

.contact-link:hover {
    color: #a87416;
}

.contact-link img {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.contact-link--whatsapp {
    gap: 0;
}

.contact-link--whatsapp img {
    width: 24px;
    height: 24px;
}

.contact-link--whatsapp:hover {
    transform: scale(1.08);
}

/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1200px) {

    .contact-links {
        gap: 12px;
    }

    .contact-link {
        font-size: 13px;
    }

    .contact-link img {
        width: 16px;
        height: 16px;
    }

    .contact-link--whatsapp img {
        width: 22px;
        height: 22px;
    }
}

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

@media (max-width: 768px) {

    .contact-links {
        gap: 8px;
        margin-left: auto;
        margin-right: 12px;
    }

    .contact-link span {
        display: none;
    }

    .contact-link {
        gap: 0;
    }

    .contact-link img {
        width: 20px;
        height: 20px;
    }

    .contact-link--whatsapp img {
        width: 22px;
        height: 22px;
    }

    #header [data-id="logo"] img {
        max-height: 68px;
        width: auto;
    }
}