:root {
    --header-bg: #fff;
    --header-color: #222;
    --header-accent: #ffb200;
    --header-radius: 12px;
    --header-height: 72px;
    --container-width: 1240px;
    --menu-gap: 28px;
    --font-main: 'Montserrat', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    background: #fff;
    color: var(--header-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* HEADER */
.header {
    background: var(--header-bg);
    border-radius: var(--header-radius);
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.header__row {
    display: flex;
    align-items: center;
    height: var(--header-height);
    justify-content: space-between;
    width: 100%;
}
.header__logo img {
    height: 48px;
    width: auto;
    display: block;
}
.header__nav {
    flex: 1 1 auto;
    margin-left: 36px;
}
.header__menu {
    list-style: none;
    display: flex;
    gap: var(--menu-gap);
    margin: 0;
    padding: 0;
}
.header__menu > li {
    position: relative;
}
.header__menu > li > a {
    color: var(--header-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 6px;
    border-radius: 6px;
    transition: color 0.2s;
}
.header__menu > li > a:hover,
.header__menu > li.current-menu-item > a {
    color: var(--header-accent);
}
.header__menu li ul {
    display: none;
    position: absolute;
    left: 0; top: 100%;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 10px;
    z-index: 10;
}
.header__menu li:hover > ul {
    display: block;
}
.header__menu li ul li a {
    color: var(--header-color);
    font-weight: 400;
    padding: 12px 22px;
    display: block;
}
.header__menu li ul li a:hover {
    background: #fafafa;
    color: var(--header-accent);
}

/* ????? ?????? Bootstrap ??? ????? ?????? */
.header__right .header-btn {
    all: unset;
    font-family: var(--font-main);
    background: #f5f5f5 !important;
    border: 1px solid #d9d9d9 !important;
    color: #222 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    padding: 5px 15px !important;
    cursor: pointer !important;
    transition: background 0.18s, border-color 0.18s, color 0.18s !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-block;
    box-sizing: border-box;
    margin: 0 3px;
}

.header__right .header-btn:hover,
.header__right .header-btn.active {
    background: #fff4cc !important;
    border-color: #ffd878 !important;
    color: #b08d00 !important;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__lang-switch,
.header__currency-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__counter span {
    background: #ffd878;
    color: #222;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}
.header__burger {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    position: relative;
}
.header__burger span,
.header__burger span:before,
.header__burger span:after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--header-color);
    border-radius: 2px;
    transition: all 0.3s;
}
.header__burger span {
    top: 50%; left: 0; margin-top: -1.5px;
}
.header__burger span:before {
    content: '';
    top: -12px; left: 0;
}
.header__burger span:after {
    content: '';
    top: 12px; left: 0;
}
@media (max-width: 900px) {
    .header__nav {
        display: none;
    }
    .header__burger {
        display: block;
    }
    .header__right {
        gap: 6px;
    }
}
