.site-header {
    background: var(--mq-surface);
    border-bottom: 1px solid var(--mq-line);
    left: 0;
    overflow: visible;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(20px);
}

.admin-bar .site-header {
    top: 32px;
}

.site-header__inner {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr auto;
    margin-inline: auto;
    min-height: 52px;
    width: var(--mq-page);
}

.site-brand {
    align-items: center;
    display: inline-flex;
    min-width: 160px;
}

.brand-logo {
    height: 28px;
    width: auto;
}

.site-nav {
    justify-self: end;
}

.menu,
.mobile-menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .menu {
    align-items: center;
    display: flex;
    gap: 34px;
}

.site-nav .menu a {
    border-bottom: 1px solid transparent;
    color: var(--mq-muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    min-height: 52px;
    align-items: center;
}

.site-nav .menu .current-menu-item > a,
.site-nav .menu a:hover {
    border-bottom-color: var(--mq-ink);
    color: var(--mq-ink);
}

.site-actions {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-left: 26px;
}

.header-icon {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--mq-ink);
    display: inline-flex;
    font-size: 17px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    position: relative;
    width: 30px;
}

button.header-icon {
    cursor: pointer;
    padding: 0;
}

.header-icon:hover {
    color: #000;
}

.header-svg-icon {
    display: block;
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
    width: 22px;
}

.currency-link__symbol {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    height: 24px;
    justify-content: center;
    line-height: 1;
    width: 24px;
}

.cart-count {
    align-items: center;
    background: #000;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    height: 16px;
    justify-content: center;
    min-width: 16px;
    padding: 0 4px;
    position: absolute;
    right: -2px;
    top: -2px;
}

.mobile-menu-toggle,
.mobile-header-menu,
.cart-panel,
.language-panel,
.currency-panel {
    display: none;
}

.language-panel,
.currency-panel {
    background: #fff;
    border-bottom: 1px solid var(--mq-line);
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 56;
}

.language-panel[hidden] {
    display: none;
}

.currency-panel[hidden] {
    display: none;
}

body.language-panel-open .language-panel:not([hidden]) {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

body.currency-panel-open .currency-panel:not([hidden]) {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.language-panel__inner,
.currency-panel__inner {
    display: flex;
    gap: 28px;
    justify-content: flex-end;
    margin-inline: auto;
    padding: 18px 0;
    width: var(--mq-page);
}

.language-panel a {
    color: #333336;
    font-size: 14px;
    font-weight: 500;
}

.currency-panel__inner {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.currency-panel a {
    align-items: center;
    border: 1px solid #d2d2d7;
    border-radius: 999px;
    color: #333336;
    display: inline-flex;
    gap: 7px;
    min-height: 36px;
    padding: 0 13px;
    text-decoration: none;
}

.currency-panel a span {
    color: var(--mq-brand);
    font-size: 13px;
    font-weight: 800;
}

.currency-panel a strong {
    font-size: 12px;
    font-weight: 800;
}

.currency-panel a em {
    color: #6e6e73;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
}

.currency-panel a.is-active {
    background: var(--mq-brand);
    border-color: var(--mq-brand);
    color: #fff;
}

.currency-panel a.is-active span,
.currency-panel a.is-active em {
    color: rgba(255, 255, 255, 0.86);
}

.currency-panel__inner p {
    color: #6e6e73;
    flex: 1 0 100%;
    font-size: 11px;
    line-height: 1.35;
    margin: 2px 0 0;
    text-align: right;
}

.language-panel a.is-active {
    color: #0066cc;
}

.cart-panel {
    background: #fff;
    border-bottom: 1px solid var(--mq-line);
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 56;
}

.cart-panel[hidden] {
    display: none;
}

body.cart-panel-open .cart-panel:not([hidden]) {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.cart-panel__inner {
    margin-inline: auto;
    min-height: 330px;
    padding: 32px 0 42px;
    position: relative;
    width: min(620px, var(--mq-page));
}

.cart-panel__close {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #6e6e73;
    cursor: pointer;
    height: 30px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 30px;
    width: 30px;
}

.cart-panel__close span,
.cart-panel__close span::after {
    background: currentColor;
    content: "";
    display: block;
    height: 1.25px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 19px;
}

.cart-panel__close:hover {
    color: #1d1d1f;
}

.cart-panel__close span {
    transform: translate(-50%, -50%) rotate(45deg);
}

.cart-panel__close span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.cart-panel__title {
    color: #333336;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 0 0 22px;
}

.cart-panel__head {
    align-items: end;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-right: 44px;
}

.cart-panel__head .cart-panel__title {
    margin: 0;
}

.cart-panel__head p:last-child {
    color: #6e6e73;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.cart-panel > .cart-panel__inner > p,
.cart-panel__inner > p {
    color: #6e6e73;
    font-size: 14px;
    line-height: 1.35;
    margin: 0 0 52px;
    max-width: 420px;
}

.cart-panel a {
    color: #0066cc;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cart-panel__primary {
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 44px;
}

.cart-panel__items {
    display: grid;
    gap: 0;
}

.cart-panel-item {
    align-items: center;
    border-top: 1px solid #e8e8ed;
    display: grid;
    gap: 13px;
    grid-template-columns: 60px minmax(0, 1fr) 28px;
    padding: 11px 0;
}

.cart-panel-item:last-child {
    border-bottom: 1px solid #e8e8ed;
}

.cart-panel-item__image {
    background: #f5f5f7;
    border-radius: 6px;
    display: block;
    height: 60px;
    overflow: hidden;
    text-decoration: none;
    width: 60px;
}

.cart-panel-item__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.cart-panel-item__body {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.cart-panel a.cart-panel-item__title {
    color: #1d1d1f;
    display: -webkit-box;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cart-panel-item__meta {
    color: #6e6e73;
    font-size: 11px;
    line-height: 1.35;
}

.cart-panel-item__meta dl,
.cart-panel-item__meta dd,
.cart-panel-item__meta p {
    margin: 0;
}

.cart-panel-item__row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.cart-panel-item__quantity {
    align-items: center;
    background: #f5f5f7;
    color: #1d1d1f;
    display: inline-flex;
    font-size: 11px;
    font-weight: 600;
    min-height: 24px;
    padding: 0 10px;
}

.cart-panel-item__row strong,
.cart-panel-item__row .amount {
    color: var(--mq-brand);
    font-size: 12px;
    font-weight: 700;
}

.cart-panel a.cart-panel-item__remove {
    align-items: center;
    color: #6e6e73;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 30px;
}

.cart-panel-item__remove svg {
    fill: none;
    height: 19px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
    width: 19px;
}

.cart-panel a.cart-panel-item__remove:hover {
    color: #1d1d1f;
}

.cart-panel__summary {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 16px 0;
}

.cart-panel__summary span {
    color: #6e6e73;
    font-size: 12px;
    font-weight: 600;
}

.cart-panel__summary strong,
.cart-panel__summary .amount {
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 700;
}

.cart-panel__actions {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 26px;
}

.cart-panel a.cart-panel__button {
    align-items: center;
    border: 1px solid #d2d2d7;
    border-radius: 999px;
    color: #1d1d1f;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0;
    min-height: 36px;
    padding: 0 16px;
    text-decoration: none;
    text-transform: none;
}

.cart-panel__button--dark {
    background: #1d1d1f;
    border-color: #1d1d1f;
    color: #fff !important;
}

.cart-panel__button--brand {
    background: #fff;
    border-color: rgba(24, 58, 90, 0.38);
    color: var(--mq-brand) !important;
}

.cart-panel__profile > p {
    color: #6e6e73;
    font-size: 12px;
    margin: 0 0 14px;
}

.cart-panel__profile a {
    align-items: center;
    color: #333336;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 12px;
    line-height: 1.2;
    margin: 0 0 16px;
    text-decoration: none;
}

.cart-panel__profile svg {
    fill: none;
    flex: 0 0 auto;
    height: 17px;
    stroke: #6e6e73;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
    width: 17px;
}

body.cart-panel-open .site-main,
body.cart-panel-open .site-footer,
body.language-panel-open .site-main,
body.language-panel-open .site-footer,
body.currency-panel-open .site-main,
body.currency-panel-open .site-footer {
    filter: blur(18px);
    pointer-events: none;
    transform: translateZ(0);
    transition: filter 160ms ease;
}

.site-main {
    min-height: 60vh;
    padding-top: calc(var(--mq-header-height) + var(--mq-content-top-gap));
}

.page-shell,
.featured-section {
    margin-inline: auto;
    padding: calc(var(--mq-header-height) + var(--mq-content-top-gap)) 0 56px;
    width: var(--mq-page);
}

.home .site-main,
.front-page-main {
    padding-top: 0;
}

.admin-bar .site-main,
.admin-bar .site-main.page-shell,
.admin-bar.woocommerce-page .site-main {
    padding-top: calc(32px + var(--mq-header-height) + var(--mq-content-top-gap));
}

.admin-bar.home .site-main,
.admin-bar .front-page-main {
    padding-top: 0;
}

.hero {
    background: #f5f5f7;
    padding: calc(var(--mq-header-height) + 22px) 0 42px;
}

.admin-bar .front-page-main .hero {
    padding-top: calc(32px + var(--mq-header-height) + 22px);
}

.hero__frame {
    align-items: center;
    background-color: #1d1d1f;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 32%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0) 100%),
        var(--hero-image);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(210, 210, 215, 0.42);
    border-radius: 8px;
    display: flex;
    margin-inline: auto;
    min-height: 430px;
    overflow: hidden;
    position: relative;
    width: var(--mq-page);
}

.hero__frame::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 32%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0) 100%);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.hero__video {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.hero__video--mobile {
    display: none;
}

.hero__frame:has(.hero__video--desktop)::after {
    opacity: 1;
}

.hero__content {
    max-width: 440px;
    padding: 52px;
    position: relative;
    z-index: 2;
}

.hero__content h1 {
    color: var(--hero-title-color, #fff);
    font-size: 21px;
    line-height: 1.18;
    margin: 0;
    max-width: 460px;
}

.hero__content > p:first-child,
.section-heading p {
    color: color-mix(in srgb, var(--hero-text-color, #fff) 76%, transparent);
    font-size: 12px;
    margin: 0 0 8px;
}

.hero__description {
    color: color-mix(in srgb, var(--hero-text-color, #fff) 82%, transparent);
    font-size: 14px;
    line-height: 1.45;
    margin: 14px 0 0;
    max-width: 410px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.button,
.text-link {
    color: var(--mq-brand);
    font-size: 14px;
    font-weight: 600;
}

.hero .button,
.hero .text-link {
    color: var(--hero-button-color, #fff);
}

.hero .button--ghost {
    color: color-mix(in srgb, var(--hero-button-color, #fff) 82%, transparent);
}

.site-footer {
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    color: #6e6e73;
}

.site-footer__inner {
    margin-inline: auto;
    padding: 18px 0 24px;
    width: var(--mq-page);
}

.footer-breadcrumb {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 34px;
}

.footer-breadcrumb__brand {
    align-items: center;
    display: inline-flex;
}

.footer-breadcrumb .brand-logo {
    height: 18px;
    max-width: 90px;
}

.footer-breadcrumb > span {
    border-right: 1.5px solid #86868b;
    border-top: 1.5px solid #86868b;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
}

.footer-breadcrumb__current {
    color: #424245;
    font-size: 13px;
    font-weight: 500;
}

.footer-breadcrumb__current:hover {
    text-decoration: underline;
}

.footer-columns {
    display: grid;
    gap: 44px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.footer-column h2 {
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.333;
    margin: 0 0 10px;
}

.footer-menu {
    display: grid;
    gap: 9px;
}

.footer-menu a {
    color: #515154;
    font-size: 12px;
    line-height: 1.333;
}

.footer-menu a:hover,
.footer-legal-menu a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

.footer-note {
    border-bottom: 1px solid #d2d2d7;
    color: #6e6e73;
    font-size: 12px;
    line-height: 1.333;
    margin: 34px 0 0;
    padding-bottom: 16px;
}

.footer-bottom {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr auto;
    padding-top: 16px;
}

.footer-bottom p,
.footer-bottom span,
.footer-credit,
.footer-legal-menu a {
    color: #6e6e73;
    font-size: 12px;
    line-height: 1.333;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.footer-legal-menu li {
    align-items: center;
    display: flex;
}

.footer-legal-menu li + li::before {
    color: #86868b;
    content: "|";
    margin: 0 10px;
}

.mobile-tabbar {
    display: none;
}
