.hob-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hob-main {
    flex: 1 0 auto;
    padding: clamp(28px, 4vw, 56px) 0 var(--hob-section-padding);
}

.hob-main:has(> .hob-page-header) {
    padding-top: 0;
}

.hob-container {
    width: min(100% - (var(--hob-container-padding) * 2), var(--hob-container-width));
    margin-inline: auto;
}

.hob-content {
    max-width: 1120px;
}

.hob-header {
    --hob-header-logo-width: clamp(195px, 13.8vw, 220px);
    --hob-header-brand-gap: clamp(24px, 2vw, 38px);
    position: sticky;
    top: 0;
    z-index: var(--hob-z-header);
    min-height: var(--hob-header-height);
    border-bottom: var(--hob-border-width) solid var(--hob-border-color);
    background-color: var(--hob-background-color);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    color: var(--hob-primary-color);
    box-shadow: none;
    transform: translate3d(0, 0, 0);
    transition:
        transform var(--hob-transition-base),
        background-color var(--hob-transition-fast),
        -webkit-backdrop-filter var(--hob-transition-fast),
        backdrop-filter var(--hob-transition-fast),
        color var(--hob-transition-fast),
        border-color var(--hob-transition-base);
    will-change: transform;
}

.hob-is-front-page .hob-header {
    position: fixed;
    left: 0;
    right: 0;
    border-bottom-color: transparent;
    background-color: transparent;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    color: #ffffff;
}

body.hob-site .hob-page > header.hob-header.hob-header--mega-open {
    border-bottom-color: color-mix(in srgb, var(--hob-primary-color) 10%, transparent);
    background-color: #ffffff;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: var(--hob-primary-color);
    transform: translate3d(0, 0, 0);
}

.hob-header.hob-header--hidden {
    transform: translate3d(0, -100%, 0);
}

.hob-header.hob-header--visible,
.hob-header.hob-header--at-top {
    transform: translate3d(0, 0, 0);
}

.hob-header.hob-header--scrolled {
    border-bottom-color: color-mix(in srgb, var(--hob-primary-color) 8%, transparent);
    background-color: rgba(255, 255, 255, 0.84);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: var(--hob-primary-color);
    box-shadow: none;
}

.admin-bar.hob-is-front-page .hob-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar.hob-is-front-page .hob-header {
        top: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hob-header,
    .hob-header__logo-stack,
    .hob-header__logo-variant {
        transition: none;
    }
}

.hob-header__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: var(--hob-header-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(20px, 2vw, 36px);
    padding-inline: var(--hob-container-padding);
}

.hob-header__logo {
    grid-column: 2;
    position: relative;
    width: var(--hob-header-logo-width);
    aspect-ratio: 337.84 / 170.32;
    display: block;
    color: inherit;
    text-decoration: none;
}

.hob-footer__logo,
.hob-mobile-panel__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hob-header__logo-stack,
.hob-header__logo-variant {
    position: absolute;
    inset: 0;
    display: block;
}

.hob-header__logo-stack {
    transform: scale(1);
    transition: transform var(--hob-transition-base);
}

.hob-header__logo-variant {
    opacity: 0;
    transition: opacity var(--hob-transition-fast);
}

.hob-header__logo-variant--dark {
    opacity: 1;
}

.hob-is-front-page .hob-header:not(.hob-header--scrolled) .hob-header__logo-variant--light {
    opacity: 1;
}

.hob-is-front-page .hob-header:not(.hob-header--scrolled) .hob-header__logo-variant--dark {
    opacity: 0;
}

body.hob-site .hob-page > header.hob-header.hob-header--mega-open .hob-header__logo-variant--light,
body.hob-site .hob-page > header.hob-header.hob-header--mega-open .hob-header__logo-variant--sticky {
    opacity: 0;
}

body.hob-site .hob-page > header.hob-header.hob-header--mega-open .hob-header__logo-variant--dark {
    opacity: 1;
}

.hob-header.hob-header--scrolled .hob-header__logo-stack {
    transform: scale(0.88);
}

.hob-header__logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-bottom: 10px;
}

.hob-header__nav {
    flex: 0 0 auto;
}

@media (min-width: 1201px) {
    .hob-header,
    .hob-header__inner {
        height: var(--hob-header-height);
        max-height: 115px;
    }

    .hob-header__nav {
        position: absolute;
        top: 50%;
        z-index: 1;
    }

    .hob-header__nav--left {
        right: calc(50% + (var(--hob-header-logo-width) / 2) + var(--hob-header-brand-gap));
        transform: translateY(-50%);
    }

    .hob-header__nav--right {
        left: calc(50% + (var(--hob-header-logo-width) / 2) + var(--hob-header-brand-gap));
        transform: translateY(-50%);
    }

    .hob-header.hob-header--scrolled .hob-header__logo-stack {
        transform: scale(0.95);
    }

    .hob-header.hob-header--scrolled .hob-header__logo-variant--dark {
        opacity: 0;
    }

    .hob-header.hob-header--scrolled .hob-header__logo-variant--sticky {
        opacity: 1;
    }
}

.hob-header__nav-list,
.hob-footer__nav-list,
.hob-mobile-panel__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hob-header__nav-list {
    display: flex;
    align-items: center;
    gap: clamp(30px, 2.4vw, 46px);
}

.hob-header__contact,
.hob-header__nav-link,
.hob-header__nav-list a,
.hob-header__action,
.hob-header__translation-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    line-height: 1;
    transition: color var(--hob-transition-fast), opacity var(--hob-transition-fast);
}

.hob-header__contact {
    grid-column: 1;
    justify-self: start;
    flex: 0 0 auto;
    gap: 8px;
    font-family: var(--hob-heading-font);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hob-header__contact-plus {
    font-size: 1rem;
    font-weight: 300;
    line-height: 0;
}

.hob-header__nav-link,
.hob-header__nav-list a {
    font-family: var(--hob-heading-font);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.hob-header__menu-trigger {
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity var(--hob-transition-fast);
}

.hob-header__nav-item {
    position: relative;
}

.hob-header__nav-link,
.hob-header__nav-list a,
.hob-header__translation-placeholder {
    font-weight: 500;
    white-space: nowrap;
}

.hob-header__contact:hover,
.hob-header__contact:focus-visible,
.hob-header__nav-link:hover,
.hob-header__nav-link:focus-visible,
.hob-header__nav-list a:hover,
.hob-header__nav-list a:focus-visible,
.hob-header__action:hover,
.hob-header__action:focus-visible {
    opacity: 0.62;
}

.hob-header__contact:focus-visible,
.hob-header__nav-link:focus-visible,
.hob-header__nav-list a:focus-visible,
.hob-header__action:focus-visible,
.hob-header__logo:focus-visible,
.hob-header__burger:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 5px;
}

.hob-header__actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 13px;
}

@media (min-width: 1201px) {
    .hob-header__actions {
        gap: clamp(20px, 1.5vw, 28px);
    }
}

.hob-header__translation-placeholder {
    min-height: 40px;
    padding-inline: 4px;
}

.hob-header__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hob-header__account,
.hob-header__cart {
    min-width: 38px;
    min-height: 40px;
    justify-content: center;
}

.hob-header__account-icon,
.hob-header__cart-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.hob-header__account-icon,
.hob-header__account-icon *,
.hob-header__cart-icon,
.hob-header__cart-icon * {
    fill: currentColor;
}

.hob-header__cart-count {
    position: absolute;
    top: 56%;
    left: 50%;
    z-index: 1;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 0.47rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: color var(--hob-transition-fast);
}

.hob-header__burger {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    line-height: 1;
}

.hob-header__burger-line {
    width: 18px;
    height: 1px;
    display: block;
    background: currentColor;
}

@media (min-width: 1201px) and (max-width: 1380px) {
    .hob-header {
        --hob-header-brand-gap: 20px;
    }

    .hob-header__nav-list {
        gap: 24px;
    }

    .hob-header__nav-link,
    .hob-header__nav-list a {
        font-size: 0.92rem;
    }

    .hob-header__actions {
        gap: 14px;
    }
}

.hob-mega-menu {
    position: absolute;
    top: var(--hob-header-height);
    left: 0;
    z-index: 1;
    width: 100%;
    padding-block: clamp(28px, 2.2vw, 42px) clamp(34px, 2.8vw, 52px);
    border-bottom: 1px solid color-mix(in srgb, var(--hob-primary-color) 9%, transparent);
    background: rgb(248 243 240 / 88%);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 35px rgb(12 32 48 / 7%);
    color: var(--hob-primary-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
        opacity 280ms ease,
        transform 280ms ease,
        visibility 0s linear 280ms;
}

.hob-header--collections-open .hob-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.hob-discover-menu {
    position: absolute;
    top: calc(50% + (var(--hob-header-height) / 2));
    left: 50%;
    z-index: 2;
    width: clamp(220px, 18vw, 260px);
    padding: 26px 28px;
    border: 1px solid color-mix(in srgb, var(--hob-primary-color) 9%, transparent);
    background: rgb(248 243 240 / 88%);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 35px rgb(12 32 48 / 7%);
    color: var(--hob-primary-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition:
        opacity 220ms ease,
        transform 220ms ease,
        visibility 0s linear 220ms;
}

.hob-header--discover-open .hob-discover-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}

.hob-discover-menu__list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hob-header__nav-list .hob-discover-menu__link {
    width: 100%;
    justify-content: flex-start;
    padding: 11px 0;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
    transition: opacity var(--hob-transition-fast), transform var(--hob-transition-fast);
}

.hob-header__nav-list .hob-discover-menu__link:hover,
.hob-header__nav-list .hob-discover-menu__link:focus-visible {
    opacity: 0.62;
    transform: translateX(3px);
}

.hob-header__nav-list .hob-discover-menu__link:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 3px;
}

.hob-mega-menu__grid {
    --hob-mega-menu-media-height: clamp(260px, 22.7vw, 430px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 36px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.hob-mega-menu__item,
.hob-mega-menu__card,
.hob-mega-menu__content {
    min-width: 0;
}

.hob-mega-menu__card {
    display: grid;
    gap: 18px;
    color: inherit;
    text-decoration: none;
}

.hob-mega-menu__media {
    position: relative;
    width: 100%;
    height: var(--hob-mega-menu-media-height);
    display: block;
    overflow: hidden;
    background: color-mix(in srgb, var(--hob-primary-color) 6%, #ffffff);
}

.hob-mega-menu__image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hob-mega-menu__content {
    display: grid;
    gap: 7px;
}

.hob-mega-menu__title {
    font-family: "HOB Editorial", Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 1.45vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
}

.hob-mega-menu__cta {
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1px solid color-mix(in srgb, currentColor 42%, transparent);
    font-family: var(--hob-heading-font);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
    transition: border-color var(--hob-transition-fast), opacity var(--hob-transition-fast);
}

.hob-mega-menu__card:hover .hob-mega-menu__image,
.hob-mega-menu__card:focus-visible .hob-mega-menu__image {
    transform: scale(1.018);
}

.hob-mega-menu__card:hover .hob-mega-menu__cta,
.hob-mega-menu__card:focus-visible .hob-mega-menu__cta {
    border-bottom-color: currentColor;
}

.hob-mega-menu__card:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 6px;
}

@media (max-width: 1200px) {
    .hob-mega-menu,
    .hob-discover-menu {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hob-mega-menu,
    .hob-mega-menu__image,
    .hob-discover-menu,
    .hob-discover-menu__link {
        transition: none;
    }
}

@media (max-width: 1200px) {
    .hob-header {
        min-height: var(--hob-mobile-header-height);
    }

    .hob-header__inner {
        min-height: var(--hob-mobile-header-height);
        grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
        gap: 12px;
    }

    .hob-header__contact,
    .hob-header__nav,
    .hob-header__translation-placeholder,
    .hob-header__account {
        display: none;
    }

    .hob-header__logo {
        grid-column: 2;
        grid-row: 1;
        z-index: 1;
        width: clamp(148px, 40vw, 180px);
        aspect-ratio: 300 / 115;
        justify-self: center;
    }

    .hob-header__logo-image {
        padding-bottom: 0;
    }

    .hob-header__actions {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        justify-self: stretch;
        justify-content: space-between;
        pointer-events: none;
    }

    .hob-header__actions > * {
        pointer-events: auto;
    }

    .hob-header__cart {
        min-width: 44px;
        min-height: 44px;
    }

    .hob-header__cart-icon {
        width: 24px;
        height: 24px;
    }

    .hob-header__cart-count {
        font-size: 0.58rem;
    }

    .hob-header__burger {
        display: inline-flex;
        order: -1;
        align-items: flex-start;
        gap: 8px;
        padding-inline: 6px;
    }

    .hob-header__burger-line {
        width: 32px;
        height: 2px;
        flex: 0 0 auto;
        border-radius: 2px;
    }

    .hob-header__burger-line + .hob-header__burger-line {
        width: 22px;
    }
}

.hob-social-links__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hob-social-links__link {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: var(--hob-border-width) solid var(--hob-border-color);
    border-radius: var(--hob-radius-button);
    color: var(--hob-primary-color);
    text-decoration: none;
    transition: border-color var(--hob-transition-base), color var(--hob-transition-base);
}

.hob-social-links__link:hover,
.hob-social-links__link:focus-visible {
    border-color: var(--hob-primary-color);
}

.hob-social-links__icon,
.hob-social-links__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.hob-social-links__icon svg,
.hob-social-links__icon svg * {
    fill: currentColor;
}

.hob-footer {
    --hob-footer-logo-width: clamp(150px, 10vw, 170px);
    --hob-footer-payment-icon-height: 18px;
    padding-top: clamp(40px, 4.5vw, 76px);
    background: #f8f3f0;
    color: #ffffff;
}

.hob-footer__container {
    display: block;
}

.hob-footer__panel {
    background: var(--hob-primary-color);
}

.hob-footer__top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(40px, 5vw, 96px);
    padding: clamp(58px, 5vw, 94px) clamp(32px, 5vw, 88px) clamp(54px, 4.5vw, 84px);
}

.hob-footer__column {
    min-width: 0;
}

.hob-footer__title,
.hob-footer__manifesto-title,
.hob-footer__newsletter-title {
    color: #ffffff;
}

.hob-footer__title {
    margin: 0 0 24px;
    font-size: clamp(0.84rem, 0.85vw, 0.96rem);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.hob-footer__accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: var(--hob-heading-font);
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: left;
    text-transform: inherit;
}

.hob-footer__accordion-button:focus-visible,
.hob-footer__nav-link:focus-visible,
.hob-footer__logo:focus-visible,
.hob-footer__newsletter-input:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.9);
    outline-offset: 5px;
}

.hob-footer__accordion-icon {
    display: none;
}

.hob-footer__accordion-panel {
    overflow: visible;
}

.hob-footer__nav-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hob-footer__nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.76rem, 0.72vw, 0.84rem);
    line-height: 1.55;
    text-decoration: none;
    transition: color var(--hob-transition-fast), opacity var(--hob-transition-fast);
}

.hob-footer__nav-link:hover,
.hob-footer__nav-link:focus-visible {
    color: #ffffff;
}

.hob-footer__separator {
    height: 1px;
    margin-inline: clamp(32px, 5vw, 88px);
    background: rgba(255, 255, 255, 0.28);
}

.hob-footer__middle {
    min-height: clamp(260px, 19vw, 340px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: clamp(38px, 4vw, 76px);
    padding: clamp(52px, 4.5vw, 82px) clamp(32px, 5vw, 88px) clamp(58px, 5vw, 92px);
}

.hob-footer__middle-brand,
.hob-footer__manifesto,
.hob-footer__newsletter {
    min-width: 0;
}

.hob-footer__middle-brand {
    align-self: end;
}

.hob-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hob-footer__logo-image {
    width: var(--hob-footer-logo-width);
    max-width: 100%;
    height: auto;
}

.hob-footer__manifesto {
    justify-self: center;
    text-align: center;
}

.hob-footer__manifesto-title {
    max-width: 350px;
    margin: 0 auto 22px;
    font-size: clamp(1.45rem, 1.55vw, 1.9rem);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: 0.01em;
}

.hob-footer__manifesto-text {
    max-width: 310px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(0.76rem, 0.7vw, 0.84rem);
    line-height: 1.75;
}

.hob-footer__newsletter {
    width: 100%;
    max-width: 380px;
    justify-self: end;
}

.hob-footer__newsletter-title {
    margin: 0 0 18px;
    font-size: clamp(0.84rem, 0.85vw, 0.96rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.11em;
}

.hob-footer__newsletter-form {
    width: 100%;
    height: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.hob-footer__newsletter-input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-size: 0.78rem;
    line-height: normal;
}

.hob-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.62);
    opacity: 1;
}

.hob-footer__newsletter-button {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1;
}

.hob-footer__newsletter-button span {
    display: block;
    line-height: 1;
}

.hob-footer__newsletter-button:disabled {
    cursor: default;
    opacity: 1;
}

.hob-footer__newsletter-text {
    max-width: 350px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    line-height: 1.65;
}

.hob-footer__bottom {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 26px 0 30px;
    color: var(--hob-body-color);
}

.hob-footer__bottom-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px clamp(28px, 3vw, 56px);
}

.hob-footer__language,
.hob-footer__copyright {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.hob-footer__payment {
    margin-left: auto;
}

.hob-payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.hob-payment-icons__icon,
.hob-payment-icons img,
.hob-payment-icons svg {
    display: block;
    width: auto;
    height: var(--hob-footer-payment-icon-height);
    max-height: var(--hob-footer-payment-icon-height);
    border-radius: 3px;
}

.gtranslate_wrapper {
    gap: 10px;
    position: relative;
    display: flex;
    font-family: 'HOB Heading';
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .hob-footer {
        --hob-footer-logo-width: clamp(120px, 16vw, 145px);
    }

    .hob-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 72px;
    }

    .hob-footer__middle {
        grid-template-columns: minmax(110px, 0.6fr) minmax(220px, 1.1fr) minmax(240px, 1fr);
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hob-footer {
        --hob-footer-logo-width: clamp(145px, 42vw, 170px);
        --hob-footer-payment-icon-height: 18px;
        padding-top: clamp(28px, 6vw, 48px);
    }

    .hob-footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 34px clamp(24px, 6vw, 48px) 42px;
    }

    .hob-footer--mobile-accordion .hob-footer__top {
        gap: 0;
    }

    .hob-footer--mobile-accordion .hob-footer__column + .hob-footer__column {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hob-footer--mobile-accordion .hob-footer__column-title {
        margin: 0;
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-button {
        min-height: 70px;
        padding: 22px 0;
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-icon {
        position: relative;
        width: 18px;
        height: 18px;
        display: block;
        flex: 0 0 18px;
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-icon::before,
    .hob-footer--mobile-accordion .hob-footer__accordion-icon::after {
        content: "";
        position: absolute;
        inset: 50% auto auto 50%;
        width: 14px;
        height: 1px;
        background: currentColor;
        transform: translate(-50%, -50%);
        transition: transform var(--hob-transition-base), opacity var(--hob-transition-base);
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-button[aria-expanded="true"] .hob-footer__accordion-icon::after {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--hob-transition-base);
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-panel.is-open {
        max-height: var(--hob-footer-panel-height, 360px);
    }

    .hob-footer--mobile-accordion .hob-footer__accordion-panel > * {
        padding-bottom: 28px;
    }

    .hob-footer--mobile-accordion .hob-footer__nav-link {
        min-height: 32px;
    }

    .hob-footer__separator {
        margin-inline: clamp(24px, 6vw, 48px);
    }

    .hob-footer__middle {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px clamp(24px, 6vw, 48px) 58px;
    }

    .hob-footer__middle-brand,
    .hob-footer__manifesto,
    .hob-footer__newsletter {
        align-self: auto;
        justify-self: center;
        text-align: center;
    }

    .hob-footer__manifesto-title {
        font-size: clamp(1.35rem, 6vw, 1.65rem);
    }

    .hob-footer__newsletter-text {
        margin-inline: auto;
    }

    .hob-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        padding-block: 24px 30px;
    }

    .hob-footer__payment {
        margin-left: 0;
    }

    .hob-payment-icons {
        justify-content: flex-start;
    }

    .hob-payment-icons__icon,
    .hob-payment-icons img,
    .hob-payment-icons svg {
        height: var(--hob-footer-payment-icon-height);
        max-height: var(--hob-footer-payment-icon-height);
    }
}

@media (max-width: 560px) {
    .hob-footer__bottom-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
