/* Phase 1 visual uplift: premium commerce header, promotion hero and search. */

body.havit-search-open,
body.havit-mobile-menu-open {
    overflow: hidden;
}

.havit-site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    box-shadow: 0 8px 30px rgba(35, 25, 22, 0.04);
}

.havit-announcement a {
    color: inherit;
    text-decoration: none;
}

.havit-header-main {
    min-height: 84px;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: clamp(20px, 3vw, 48px);
}

.havit-header-logo {
    width: 180px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
    padding: 0 25px;
    background: var(--havit-black);
}

.havit-header-logo img {
    width: 130px;
}

.havit-desktop-nav {
    justify-content: flex-start;
    gap: clamp(3px, 0.5vw, 8px);
}

.havit-nav-category,
.havit-nav-catalogue {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--havit-ink);
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
}

.havit-nav-category svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform 180ms ease;
}

.havit-nav-category:hover,
.havit-nav-category:focus-visible,
.havit-nav-category.is-open,
.havit-nav-category.is-featured {
    background: var(--havit-neutral-100);
    color: var(--havit-black) !important;
}

.havit-nav-category.is-open svg {
    transform: rotate(180deg);
}

.havit-header-actions {
    gap: 6px;
}

.havit-icon-button {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--havit-black);
    text-decoration: none;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.havit-icon-button:hover,
.havit-icon-button:focus-visible {
    background: var(--havit-neutral-100);
}

.havit-icon-button:active {
    transform: scale(0.96);
}

.havit-menu-toggle {
    display: none;
}

.havit-icon-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.havit-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 9px;
}

.havit-mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 30;
    padding: 28px 0 32px;
    border-top: 1px solid var(--havit-neutral-100);
    background: var(--havit-white);
    box-shadow: 0 28px 70px rgba(35, 25, 22, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
}

.havit-mega-menu.is-open {
    opacity: 1;
    transform: translateY(0);
}

.havit-mega-menu__grid {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(220px, 0.9fr) minmax(480px, 1.9fr);
    gap: clamp(30px, 4vw, 64px);
    align-items: stretch;
}

.havit-mega-menu__intro {
    padding: 8px 34px 8px 0;
    border-right: 1px solid var(--havit-neutral-100);
}

.havit-mega-menu__eyebrow {
    margin: 0 0 13px;
    color: var(--havit-neutral-600);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.havit-mega-menu__intro h2 {
    margin: 0;
    font-size: clamp(28px, 2.7vw, 42px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.havit-mega-menu__intro > p:not(.havit-mega-menu__eyebrow) {
    margin: 18px 0 25px;
    color: var(--havit-neutral-600);
    font-size: 12px;
    line-height: 1.65;
}

.havit-mega-menu__intro > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--havit-black);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.havit-mega-menu__links {
    display: flex;
    flex-direction: column;
}

.havit-mega-menu__links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 4px;
    border-bottom: 1px solid var(--havit-neutral-100);
    color: var(--havit-ink);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: padding 160ms ease, color 160ms ease;
}

.havit-mega-menu__links a:hover,
.havit-mega-menu__links a:focus-visible {
    padding-left: 9px;
    color: var(--havit-black);
}

.havit-mega-menu__links small {
    color: var(--havit-neutral-600);
    font-size: 9px;
    font-weight: 600;
}

.havit-mega-menu__products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.havit-mega-product {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background: var(--havit-neutral-50);
    color: var(--havit-black);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.havit-mega-product:hover,
.havit-mega-product:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(35, 25, 22, 0.09);
}

.havit-mega-product__image {
    aspect-ratio: 1.35 / 1;
    display: block;
    overflow: hidden;
    background: #f1f1ee;
}

.havit-mega-product__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 220ms ease;
}

.havit-mega-product:hover img {
    transform: scale(1.04);
}

.havit-mega-product__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px 34px 15px 14px;
}

.havit-mega-product__meta strong {
    overflow: hidden;
    font-size: 10px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.havit-mega-product__meta > span {
    font-size: 10px;
    font-weight: 700;
}

.havit-mega-product__meta del {
    color: var(--havit-neutral-600);
    font-size: 8px;
}

.havit-mega-product__meta ins {
    text-decoration: none;
}

.havit-mega-product__arrow {
    position: absolute;
    right: 13px;
    bottom: 15px;
    font-size: 14px;
}

/* Predictive search */
.havit-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    overflow-y: auto;
    background: #f5f5f2;
    color: var(--havit-ink);
}

.havit-search-overlay__bar {
    border-bottom: 1px solid var(--havit-neutral-300);
    background: var(--havit-white);
}

.havit-search-overlay__bar .havit-shell-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.havit-search-overlay__bar p {
    margin: 0;
    color: var(--havit-black);
    font-size: 13px;
    font-weight: 700;
}

.havit-search-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--havit-neutral-300);
    border-radius: 50%;
    background: var(--havit-white);
    color: var(--havit-black) !important;
    cursor: pointer;
}

.havit-search-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.havit-search-overlay__content {
    padding-block: clamp(52px, 8vw, 104px);
}

.havit-predictive-search {
    max-width: 1000px;
    margin-inline: auto;
}

.havit-predictive-search > label {
    display: block;
    margin-bottom: 24px;
    color: var(--havit-black);
    font-size: clamp(32px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.havit-predictive-search__field {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px 12px 12px 20px;
    border: 1px solid var(--havit-neutral-300);
    border-radius: 14px;
    background: var(--havit-white);
    box-shadow: 0 18px 50px rgba(35, 25, 22, 0.06);
}

.havit-predictive-search__field svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--havit-neutral-600);
    stroke-width: 1.6;
}

.havit-predictive-search__field input[type="search"] {
    width: 100%;
    height: 48px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--havit-black);
    font-size: clamp(15px, 1.6vw, 20px);
}

.havit-predictive-search__field button {
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 9px;
    background: var(--havit-black);
    color: var(--havit-white);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.havit-search-status {
    max-width: 1000px;
    margin: 14px auto 0;
    color: var(--havit-neutral-600);
    font-size: 11px;
}

.havit-search-suggestions,
.havit-search-results {
    max-width: 1000px;
    margin: 46px auto 0;
}

.havit-search-suggestions > p {
    margin: 0 0 15px;
    color: var(--havit-neutral-600);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.havit-search-suggestions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.havit-search-suggestions a {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 12px 15px;
    border: 1px solid var(--havit-neutral-300);
    border-radius: 8px;
    background: var(--havit-white);
    color: var(--havit-black);
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

.havit-search-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.havit-search-result {
    min-width: 0;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px 10px 10px;
    border-radius: 10px;
    background: var(--havit-white);
    color: var(--havit-black);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.havit-search-result:hover,
.havit-search-result:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(35, 25, 22, 0.08);
}

.havit-search-result > img {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 7px;
    object-fit: contain;
    background: var(--havit-neutral-50);
    mix-blend-mode: multiply;
}

.havit-search-result__copy,
.havit-search-result__commerce {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.havit-search-result__copy strong {
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.havit-search-result__copy span,
.havit-search-result__commerce small {
    color: var(--havit-neutral-600);
    font-size: 9px;
}

.havit-search-result__commerce {
    align-items: flex-end;
    font-size: 11px;
}

.havit-search-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 30px;
    border-radius: 10px;
    background: var(--havit-white);
    color: var(--havit-neutral-600);
    font-size: 13px;
}

/* Promotion hero */
.havit-promo-hero {
    position: relative;
    overflow: hidden;
    background: var(--havit-black);
}

.havit-promo-hero__viewport {
    position: relative;
    min-height: min(670px, calc(100vh - 118px));
}

.havit-promo-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.havit-promo-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.havit-promo-slide--1 {
    background: #080808;
    color: var(--havit-white);
}

.havit-promo-slide--2 {
    background: #efeee9;
    color: var(--havit-black);
}

.havit-promo-slide--3 {
    background: var(--havit-audio);
    color: var(--havit-black);
}

.havit-promo-slide__background,
.havit-promo-slide__background img,
.havit-promo-slide__scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.havit-promo-slide__background img {
    display: block;
    object-fit: cover;
}

.havit-promo-slide__scrim {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.06) 76%);
}

.havit-promo-slide--light .havit-promo-slide__scrim {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 44%, rgba(255, 255, 255, 0.04) 78%);
}

.havit-promo-slide__grid {
    position: relative;
    z-index: 2;
    min-height: min(670px, calc(100vh - 118px));
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
    align-items: center;
    gap: clamp(46px, 7vw, 110px);
    padding-block: 78px 112px;
}

.havit-promo-slide__content {
    max-width: 670px;
}

.havit-promo-slide__label {
    margin: 0 0 19px;
    color: currentColor;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.14em;
    opacity: 0.62;
    text-transform: uppercase;
}

.havit-promo-slide h1 {
    max-width: 780px;
    margin: 0;
    color: currentColor;
    font-size: clamp(48px, 5.7vw, 82px);
    font-weight: 750;
    line-height: 0.98;
    letter-spacing: -0.058em;
    text-wrap: balance;
}

.havit-promo-slide__copy {
    max-width: 590px;
    margin: 26px 0 0;
    color: currentColor;
    font-size: clamp(14px, 1.35vw, 18px);
    line-height: 1.65;
    opacity: 0.72;
}

.havit-promo-slide__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.havit-promo-products {
    position: relative;
    min-height: 460px;
}

.havit-promo-product {
    position: absolute;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: #f4f4f1;
    color: var(--havit-black);
    text-decoration: none;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.havit-promo-product:hover,
.havit-promo-product:focus-visible {
    box-shadow: 0 32px 84px rgba(0, 0, 0, 0.35);
}

.havit-promo-product__image {
    min-height: 0;
    flex: 1;
    overflow: hidden;
}

.havit-promo-product__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 260ms ease;
}

.havit-promo-product:hover img {
    transform: scale(1.035);
}

.havit-promo-product__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px 38px 15px 16px;
    background: rgba(255, 255, 255, 0.82);
}

.havit-promo-product__meta strong {
    overflow: hidden;
    font-size: 10px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.havit-promo-product__meta > span {
    font-size: 10px;
    font-weight: 700;
}

.havit-promo-product__meta del {
    color: var(--havit-neutral-600);
    font-size: 8px;
}

.havit-promo-product__meta ins {
    text-decoration: none;
}

.havit-promo-product__arrow {
    position: absolute;
    right: 15px;
    bottom: 16px;
    font-size: 15px;
}

.havit-promo-product--1 {
    z-index: 3;
    width: 54%;
    height: 78%;
    right: 11%;
    bottom: 4%;
    transform: rotate(1.5deg);
}

.havit-promo-product--1:hover { transform: rotate(1.5deg) translateY(-5px); }

.havit-promo-product--2 {
    z-index: 2;
    width: 37%;
    height: 54%;
    top: 0;
    left: 0;
    transform: rotate(-4deg);
}

.havit-promo-product--2:hover { transform: rotate(-4deg) translateY(-5px); }

.havit-promo-product--3 {
    z-index: 4;
    width: 34%;
    height: 48%;
    top: 3%;
    right: 0;
    transform: rotate(4deg);
}

.havit-promo-product--3:hover { transform: rotate(4deg) translateY(-5px); }

.havit-promo-slide--2 .havit-promo-product,
.havit-promo-slide--3 .havit-promo-product {
    box-shadow: 0 24px 60px rgba(35, 25, 22, 0.16);
}

.havit-promo-controls {
    position: absolute;
    right: 0;
    bottom: 31px;
    left: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.havit-promo-dots,
.havit-promo-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.havit-promo-dots button {
    min-width: 44px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.havit-promo-dots button[aria-selected="true"] {
    border-color: var(--havit-white);
    color: var(--havit-white);
}

.havit-promo-arrows button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: var(--havit-white);
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

/* Homepage/footer consistency */
.havit-site-footer {
    padding: 54px 0 20px;
}

.havit-footer-grid {
    grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(120px, 0.75fr));
    gap: clamp(30px, 4vw, 54px);
}

.havit-footer-brand > img:first-child {
    width: 128px;
    margin-bottom: 20px;
}

.havit-footer-brand .havit-footer-slogan {
    width: min(180px, 74%);
    margin-bottom: 17px;
}

.havit-footer-brand p {
    font-size: 12px;
}

.havit-footer-bottom {
    margin-top: 42px;
}

/* Quick view modal is enabled again — styled in feedback-fixes.css. */

/* Mobile navigation */
.havit-mobile-nav__top,
.havit-mobile-category,
.havit-mobile-nav__utility {
    width: 100%;
}

@media (max-width: 1180px) {
    .havit-header-main {
        grid-template-columns: 160px minmax(0, 1fr) auto;
        gap: 15px;
    }

    .havit-header-logo {
        width: 160px;
    }

    .havit-nav-category,
    .havit-nav-catalogue {
        padding-inline: 9px;
        font-size: 11px;
    }

    .havit-account-link {
        display: none;
    }
}

@media (max-width: 1024px) {
    .havit-header-main {
        min-height: 70px;
        grid-template-columns: 142px 1fr auto;
    }

    .havit-header-logo {
        width: 142px;
        margin-left: -16px;
        padding-inline: 19px;
    }

    .havit-header-logo img {
        width: 108px;
    }

    .havit-desktop-nav,
    .havit-account-link {
        display: none;
    }

    .havit-header-actions {
        grid-column: 3;
    }

    .havit-menu-toggle {
        display: inline-grid !important;
    }

    .havit-mega-layer {
        display: none;
    }

    .havit-mobile-nav {
        position: fixed;
        top: 104px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1190;
        display: block;
        overflow-y: auto;
        padding: 18px 22px 38px;
        border-top: 1px solid var(--havit-neutral-100);
        background: var(--havit-white);
    }

    .havit-mobile-nav__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 9px 0 20px;
        border-bottom: 1px solid var(--havit-neutral-300);
    }

    .havit-mobile-nav__top strong {
        font-size: 21px;
        letter-spacing: -0.035em;
    }

    .havit-mobile-nav__top a {
        padding: 0;
        border: 0;
        font-size: 11px;
    }

    .havit-mobile-category > button {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        border: 0;
        border-bottom: 1px solid var(--havit-neutral-100);
        border-radius: 0;
        background: transparent;
        color: var(--havit-black);
        font-size: 15px;
        font-weight: 650;
        cursor: pointer;
    }

    .havit-mobile-category > button span {
        font-size: 21px;
        font-weight: 400;
    }

    .havit-mobile-category__panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 22px;
        padding: 5px 0 18px;
        border-bottom: 1px solid var(--havit-neutral-100);
    }

    .havit-mobile-category__panel[hidden] {
        display: none !important;
    }

    .havit-menu-toggle[aria-expanded="true"] .havit-menu-toggle__bars {
        background: transparent;
    }

    .havit-menu-toggle[aria-expanded="true"] .havit-menu-toggle__bars::before {
        top: 0;
        transform: rotate(45deg);
    }

    .havit-menu-toggle[aria-expanded="true"] .havit-menu-toggle__bars::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .havit-mobile-category__panel a {
        padding: 11px 0;
        border: 0;
        color: var(--havit-neutral-600);
        font-size: 11px;
        font-weight: 550;
    }

    .havit-mobile-category__panel .havit-mobile-category__all {
        color: var(--havit-black);
        font-weight: 700;
    }

    .havit-mobile-nav__utility {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 24px;
        padding-top: 25px;
    }

    .havit-mobile-nav__utility a {
        padding: 0;
        border: 0;
        color: var(--havit-neutral-600);
        font-size: 11px;
    }

    .havit-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .havit-promo-slide__grid {
        min-height: 760px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 36px;
        padding-block: 68px 118px;
    }

    .havit-promo-hero__viewport {
        min-height: 760px;
    }

    .havit-promo-slide__content {
        max-width: 720px;
    }

    .havit-promo-products {
        width: min(100%, 700px);
        min-height: 330px;
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .havit-header-main {
        grid-template-columns: 124px 1fr auto;
    }

    .havit-header-logo {
        width: 124px;
        margin-left: -12px;
        padding-inline: 16px;
    }

    .havit-header-logo img {
        width: 94px;
    }

    .havit-header-actions {
        gap: 1px;
    }

    .havit-icon-button {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .havit-icon-button svg {
        width: 19px;
        height: 19px;
    }

    .havit-mobile-nav {
        top: 102px;
    }

    .havit-mobile-category__panel {
        grid-template-columns: 1fr;
    }

    .havit-search-overlay__bar .havit-shell-container {
        min-height: 70px;
    }

    .havit-search-overlay__content {
        padding-block: 42px;
    }

    .havit-predictive-search > label {
        margin-bottom: 19px;
        font-size: clamp(34px, 11vw, 48px);
    }

    .havit-predictive-search__field {
        grid-template-columns: 26px minmax(0, 1fr);
        padding: 10px 15px;
    }

    .havit-predictive-search__field button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .havit-search-results {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .havit-search-result {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .havit-search-result > img {
        width: 66px;
        height: 66px;
    }

    .havit-search-result__commerce {
        grid-column: 2;
        align-items: flex-start;
    }

    .havit-promo-hero__viewport {
        height: clamp(700px, calc(100svh - 103px), 760px);
        min-height: 0;
    }

    .havit-promo-slide__grid {
        height: 100%;
        min-height: 0;
        grid-template-rows: auto minmax(180px, 205px);
        align-content: start;
        gap: 14px;
        padding-block: 36px 58px;
    }

    .havit-promo-slide {
        height: 100%;
    }

    .havit-promo-slide__label {
        margin-bottom: 12px;
    }

    .havit-promo-slide h1 {
        font-size: clamp(42px, 12.5vw, 52px);
    }

    .havit-promo-slide__copy {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.55;
    }

    .havit-promo-slide__actions {
        gap: 14px 17px;
        margin-top: 21px;
    }

    .havit-promo-slide__actions .havit-button {
        min-height: 46px;
    }

    .havit-promo-products {
        min-height: 0;
        height: 205px;
    }

    .havit-promo-product__meta {
        padding: 10px 30px 11px 11px;
    }

    .havit-promo-product__meta strong {
        font-size: 8px;
    }

    .havit-promo-product--1 {
        width: 58%;
        height: 82%;
        right: 8%;
    }

    .havit-promo-product--2 {
        width: 39%;
        height: 56%;
    }

    .havit-promo-product--3 {
        width: 36%;
        height: 51%;
    }

    .havit-promo-controls {
        bottom: 22px;
    }

    .havit-promo-dots button {
        min-width: 34px;
    }

    .havit-promo-arrows button {
        width: 37px;
        height: 37px;
    }

    .havit-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .havit-mega-menu,
    .havit-mega-product,
    .havit-promo-slide,
    .havit-promo-product,
    .havit-promo-product__image img,
    .havit-search-result {
        transition: none;
    }
}
