/* Hand Made storefront utility bar. */
.hm-header__accent {
    display: flex;
    height: 4px;
}

.hm-header__accent span {
    width: 50%;
}

.hm-header__accent span:first-child {
    background: #0057b8;
}

.hm-header__accent span:last-child {
    background: #ffd700;
}

.hm-topbar {
    padding: 0;
    border: 0;
    background: #181a19 !important;
    box-shadow: inset 0 -1px #343635;
    color: #aaa8a3;
}

.hm-topbar .hm-topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    width: calc(100% - 48px);
    max-width: 1440px;
    min-height: 46px;
    margin: 0 auto;
}

.hm-topbar__nav,
.hm-topbar__utility {
    display: flex;
    gap: clamp(18px, 2vw, 34px);
    align-items: center;
}

.hm-topbar__nav {
    justify-self: start;
}

.hm-topbar__utility {
    justify-self: end;
}

.hm-topbar a {
    position: relative;
    padding: 2px 0;
    color: #aaa8a3 !important;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none !important;
    transition: color .2s;
    white-space: nowrap;
}

.hm-topbar__nav a::after,
.hm-topbar__support::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 1px;
    background: #fff;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s;
}

.hm-topbar a:hover,
.hm-topbar a:focus-visible {
    color: #fff !important;
}

.hm-topbar__nav a:hover::after,
.hm-topbar__nav a:focus-visible::after,
.hm-topbar__support:hover::after,
.hm-topbar__support:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hm-topbar__message {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-self: center;
    margin: 0;
    color: #f6f3ec;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

.hm-topbar__flag {
    display: inline-flex;
    overflow: hidden;
    width: 18px;
    height: 12px;
    border-radius: 1px;
    flex-direction: column;
}

.hm-topbar__flag i {
    display: block;
    width: 100%;
    height: 50%;
}

.hm-topbar__flag i:first-child {
    background: #0057b8;
}

.hm-topbar__flag i:last-child {
    background: #ffd700;
}

.hm-topbar__social .widget-socials .social {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hm-topbar__social .widget-socials .social > li {
    margin: 0;
}

.hm-topbar__social .widget-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    color: #f6f3ec !important;
    font-size: 14px;
}

.hm-topbar .switcher-dropdown a,
.hm-topbar .switcher-dropdown a:hover,
.hm-topbar .switcher-dropdown a:focus,
.hm-topbar .switcher-dropdown a:focus-visible {
    color: #222 !important;
}

.hm-topbar .switcher-dropdown a:hover,
.hm-topbar .switcher-dropdown a:focus,
.hm-topbar .switcher-dropdown a:focus-visible {
    text-decoration: underline !important;
    text-decoration-color: #222 !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.hm-topbar .switcher-dropdown li:hover,
.hm-topbar .switcher-dropdown li:focus-within {
    background: #f3f2ef;
}

@media only screen and (max-width: 1199px) {
    .hm-topbar .hm-topbar__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .hm-topbar__nav {
        display: none;
    }

    .hm-topbar__message {
        justify-self: start;
    }
}

@media only screen and (max-width: 899px) {
    .hm-topbar .hm-topbar__inner {
        gap: 16px;
        width: calc(100% - 32px);
    }

    .hm-topbar__support {
        display: none;
    }
}
