.hkrh-root,
.hkrh-root * {
    box-sizing: border-box;
}

.hkrh-root {
    position: relative;
    z-index: 999;
    width: 100%;
    font-family: var(--hkrh-body-font);
    color: var(--hkrh-text);
}

.hkrh-root button,
.hkrh-root input,
.hkrh-root select,
.hkrh-root textarea {
    font: inherit;
}

.hkrh-root button,
.hkrh-root a {
    -webkit-tap-highlight-color: transparent;
}

.hkrh-root a {
    text-decoration: none;
}

.hkrh-root svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hkrh-header {
    position: var(--hkrh-position);
    top: 0;
    z-index: 999;
    width: 100%;
    background: var(--hkrh-main-bg);
    box-shadow: var(--hkrh-shadow);
}

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

.hkrh-inner {
    width: min(100%, var(--hkrh-max-width));
    margin-inline: auto;
    padding-inline: var(--hkrh-padding-x);
}

/* Top bar */
.hkrh-topbar {
    min-height: var(--hkrh-topbar-height);
    color: var(--hkrh-topbar-text);
    background: var(--hkrh-topbar-bg);
    font-size: var(--hkrh-topbar-size);
}

.hkrh-topbar-inner {
    min-height: var(--hkrh-topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hkrh-topbar-message,
.hkrh-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hkrh-topbar-link {
    color: inherit;
    white-space: nowrap;
}

.hkrh-topbar-link:hover {
    color: #fff;
}

.hkrh-topbar-link svg {
    width: 14px;
    height: 14px;
    color: var(--hkrh-topbar-accent);
}

.hkrh-topbar-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    background: var(--hkrh-topbar-accent);
    border-radius: 999px;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--hkrh-topbar-accent) 15%, transparent);
}

/* Main row */
.hkrh-main-row {
    min-height: var(--hkrh-main-row-height);
    background: var(--hkrh-main-bg);
    border-bottom: 1px solid var(--hkrh-border);
}

.hkrh-main-inner {
    min-height: var(--hkrh-main-row-height);
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(260px, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 44px);
}

.hkrh-logo-wrap {
    min-width: 0;
}

.hkrh-logo,
.hkrh-text-logo {
    display: inline-flex;
    align-items: center;
    max-width: var(--hkrh-logo-width);
    color: var(--hkrh-text);
}

.hkrh-logo-image {
    display: block;
    width: auto;
    max-width: var(--hkrh-logo-width);
    max-height: 62px;
    object-fit: contain;
}

.hkrh-text-logo {
    gap: 10px;
    line-height: 1.05;
}

.hkrh-text-logo-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: var(--hkrh-topbar-bg);
    background: #fff;
    border: 1px solid var(--hkrh-border);
    border-radius: 5px;
    outline: 3px solid var(--hkrh-topbar-accent);
    outline-offset: -7px;
    font-family: var(--hkrh-heading-font);
    font-weight: 800;
}

.hkrh-text-logo > span:last-child {
    display: grid;
    gap: 4px;
}

.hkrh-text-logo strong {
    font-family: var(--hkrh-heading-font);
    font-size: 14px;
    letter-spacing: .06em;
}

.hkrh-text-logo small {
    color: var(--hkrh-muted);
    font-size: 9px;
}

/* Search */
.hkrh-desktop-search {
    min-width: 0;
}

.hkrh-search-form {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--hkrh-search-height);
    width: 100%;
    min-height: var(--hkrh-search-height);
}

.hkrh-search-input {
    width: 100%;
    min-width: 0;
    height: var(--hkrh-search-height);
    padding: 0 16px;
    color: var(--hkrh-search-text);
    background: var(--hkrh-search-bg);
    border: 1px solid var(--hkrh-search-border);
    border-right: 0;
    border-radius: 9px 0 0 9px;
    outline: none;
    font-size: var(--hkrh-search-size);
    box-shadow: none;
}

.hkrh-search-input::placeholder {
    color: var(--hkrh-search-placeholder);
    opacity: 1;
}

.hkrh-search-input:focus {
    border-color: var(--hkrh-search-button-bg);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--hkrh-search-button-bg) 13%, transparent);
}

.hkrh-search-submit {
    width: var(--hkrh-search-height);
    height: var(--hkrh-search-height);
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--hkrh-search-button-color);
    background: var(--hkrh-search-button-bg);
    border: 0;
    border-radius: 0 9px 9px 0;
    cursor: pointer;
}

.hkrh-search-submit:hover {
    filter: brightness(.94);
}

.hkrh-search-submit svg {
    width: 20px;
    height: 20px;
}

.hkrh-search-results {
    position: absolute;
    z-index: 1005;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 430px;
    overflow-y: auto;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--hkrh-border);
    border-radius: 12px;
    box-shadow: 0 22px 55px rgba(3,17,31,.16);
}

.hkrh-search-result {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px;
    color: var(--hkrh-text);
    border-radius: 9px;
}

.hkrh-search-result:hover,
.hkrh-search-result:focus {
    background: #f5f3ee;
    outline: none;
}

.hkrh-search-result-image,
.hkrh-search-result-placeholder {
    width: 52px;
    height: 58px;
    object-fit: cover;
    border-radius: 7px;
    background: #eceff1;
}

.hkrh-search-result-placeholder {
    display: grid;
    place-items: center;
    color: var(--hkrh-muted);
}

.hkrh-search-result-placeholder svg {
    width: 20px;
    height: 20px;
}

.hkrh-search-result-copy {
    min-width: 0;
}

.hkrh-search-result-copy strong {
    display: block;
    overflow: hidden;
    color: var(--hkrh-text);
    font-family: var(--hkrh-heading-font);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hkrh-search-result-copy small {
    display: block;
    margin-top: 4px;
    color: var(--hkrh-muted);
    font-size: 11px;
}

.hkrh-search-all {
    display: block;
    padding: 11px 12px;
    color: var(--hkrh-menu-hover);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.hkrh-search-empty,
.hkrh-search-loading {
    padding: 20px 12px;
    color: var(--hkrh-muted);
    text-align: center;
    font-size: 13px;
}

/* Header actions */
.hkrh-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.hkrh-action-link {
    min-width: 54px;
    display: grid;
    justify-items: center;
    gap: 4px;
    color: var(--hkrh-action-icon);
    font-size: var(--hkrh-action-size);
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.hkrh-action-link:hover {
    color: var(--hkrh-action-hover);
}

.hkrh-action-link svg {
    width: 22px;
    height: 22px;
}

.hkrh-icon-button {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    padding: 0;
    color: var(--hkrh-action-icon);
    background: transparent;
    border: 1px solid var(--hkrh-border);
    border-radius: 999px;
}

.hkrh-icon-button svg {
    width: 21px;
    height: 21px;
}

.hkrh-cart-button {
    position: relative;
    min-width: 128px;
    min-height: 48px;
    padding: 7px 38px 7px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--hkrh-cart-text);
    background: var(--hkrh-cart-bg);
    border: 1px solid var(--hkrh-border);
    border-radius: 11px;
    cursor: pointer;
}

.hkrh-cart-button:hover {
    color: var(--hkrh-action-hover);
    border-color: color-mix(in srgb, var(--hkrh-action-hover) 50%, var(--hkrh-border));
}

.hkrh-cart-icon {
    display: grid;
    place-items: center;
}

.hkrh-cart-icon svg {
    width: 22px;
    height: 22px;
}

.hkrh-cart-copy {
    min-width: 0;
    display: grid;
    text-align: left;
    line-height: 1.05;
}

.hkrh-cart-copy small {
    color: var(--hkrh-muted);
    font-size: 10px;
    font-weight: 700;
}

.hkrh-cart-copy strong {
    margin-top: 4px;
    color: currentColor;
    font-family: var(--hkrh-heading-font);
    font-size: 12px;
    white-space: nowrap;
}

.hkrh-cart-count {
    position: absolute;
    top: 6px;
    right: 7px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    display: grid;
    place-items: center;
    color: var(--hkrh-cart-badge-text);
    background: var(--hkrh-cart-badge-bg);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

/* Navigation */
.hkrh-nav-row {
    min-height: var(--hkrh-nav-row-height);
    background: var(--hkrh-nav-bg);
    border-bottom: 1px solid var(--hkrh-border);
}

.hkrh-nav-inner {
    min-height: var(--hkrh-nav-row-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.hkrh-menu,
.hkrh-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hkrh-menu {
    display: flex;
    align-items: stretch;
    gap: clamp(8px, 1.8vw, 28px);
}

.hkrh-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.hkrh-menu > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: var(--hkrh-nav-row-height);
    color: var(--hkrh-menu);
    font-family: var(--hkrh-heading-font);
    font-size: var(--hkrh-menu-size);
    font-weight: var(--hkrh-menu-weight);
    text-transform: uppercase;
    white-space: nowrap;
}

.hkrh-menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--hkrh-menu-indicator);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.hkrh-menu > li:hover > a,
.hkrh-menu > li.current-menu-item > a,
.hkrh-menu > li.current-menu-ancestor > a {
    color: var(--hkrh-menu-hover);
}

.hkrh-menu > li:hover > a::after,
.hkrh-menu > li.current-menu-item > a::after,
.hkrh-menu > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.hkrh-menu .sub-menu {
    position: absolute;
    z-index: 1001;
    top: calc(100% - 1px);
    left: -14px;
    min-width: 230px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    background: var(--hkrh-dropdown-bg);
    border: 1px solid var(--hkrh-border);
    border-radius: 10px;
    box-shadow: 0 20px 48px rgba(3,17,31,.14);
    transform: translateY(8px);
    transition: .18s ease;
}

.hkrh-menu li:hover > .sub-menu,
.hkrh-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hkrh-menu .sub-menu li {
    position: relative;
}

.hkrh-menu .sub-menu a {
    display: block;
    padding: 11px 12px;
    color: var(--hkrh-dropdown-text);
    border-radius: 7px;
    font-size: 13px;
}

.hkrh-menu .sub-menu a:hover,
.hkrh-menu .sub-menu a:focus {
    color: var(--hkrh-dropdown-hover-text);
    background: var(--hkrh-dropdown-hover-bg);
}

.hkrh-menu .sub-menu .sub-menu {
    top: -8px;
    left: calc(100% + 8px);
}

.hkrh-shop-button {
    min-height: 38px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hkrh-button-text);
    background: var(--hkrh-button-bg);
    border-radius: 999px;
    font-family: var(--hkrh-heading-font);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s ease;
}

.hkrh-shop-button:hover {
    color: var(--hkrh-button-hover-text);
    background: var(--hkrh-button-hover-bg);
    transform: translateY(-1px);
}

.hkrh-mobile-search-panel {
    padding-block: 12px;
    background: var(--hkrh-main-bg);
    border-bottom: 1px solid var(--hkrh-border);
}

/* Overlay and drawers */
.hkrh-overlay {
    position: fixed;
    z-index: 1998;
    inset: 0;
    background: var(--hkrh-overlay);
    opacity: 0;
    transition: opacity .25s ease;
}

.hkrh-overlay.is-visible {
    opacity: 1;
}

.hkrh-mobile-drawer,
.hkrh-cart-drawer {
    position: fixed;
    z-index: 1999;
    top: 0;
    bottom: 0;
    width: min(92vw, 420px);
    overflow-y: auto;
    transition: transform .32s cubic-bezier(.22,.72,.23,1);
}

.hkrh-mobile-drawer {
    left: 0;
    color: var(--hkrh-mobile-drawer-text);
    background: var(--hkrh-mobile-drawer-bg);
    transform: translateX(-105%);
}

.hkrh-cart-drawer {
    right: 0;
    color: var(--hkrh-cart-drawer-text);
    background: var(--hkrh-cart-drawer-bg);
    box-shadow: -20px 0 55px rgba(3,17,31,.18);
    transform: translateX(105%);
}

.hkrh-mobile-drawer.is-open,
.hkrh-cart-drawer.is-open {
    transform: translateX(0);
}

.hkrh-drawer-head {
    min-height: 74px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.hkrh-drawer-head strong {
    font-family: var(--hkrh-heading-font);
    font-size: 17px;
    text-transform: uppercase;
}

.hkrh-drawer-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 999px;
    opacity: .8;
}

.hkrh-drawer-close svg {
    width: 19px;
    height: 19px;
}

.hkrh-mobile-menu-content {
    padding: 12px 18px 28px;
}

.hkrh-mobile-menu {
    display: block;
}

.hkrh-mobile-menu > li {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.hkrh-mobile-menu > li > a,
.hkrh-mobile-menu .sub-menu a {
    min-height: auto;
    padding: 15px 0;
    display: block;
    color: var(--hkrh-mobile-drawer-text);
    font-family: var(--hkrh-heading-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.hkrh-mobile-menu > li > a::after {
    display: none;
}

.hkrh-mobile-menu .sub-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 14px;
    visibility: visible;
    overflow: hidden;
    opacity: 1;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height .3s ease;
}

.hkrh-mobile-menu .menu-item-has-children {
    position: relative;
}

.hkrh-submenu-toggle {
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--hkrh-mobile-drawer-text);
    background: transparent;
    border: 0;
}

.hkrh-submenu-toggle svg {
    transition: transform .2s ease;
}

.hkrh-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.hkrh-mobile-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 1000px;
}

.hkrh-mobile-drawer-actions {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hkrh-mobile-drawer-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--hkrh-mobile-drawer-text);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.hkrh-mobile-drawer-actions svg {
    width: 18px;
    height: 18px;
}

/* Mini cart */

.hkrh-cart-confirmation {
    margin: 14px 20px 0;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hkrh-cart-badge-text);
    background: var(--hkrh-cart-badge-bg);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .18s ease, transform .18s ease;
}

.hkrh-cart-confirmation[hidden] {
    display: none !important;
}

.hkrh-cart-confirmation.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hkrh-cart-confirmation svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.hkrh-cart-drawer-head {
    color: var(--hkrh-cart-drawer-text);
    border-bottom-color: var(--hkrh-border);
}

.hkrh-cart-drawer-head > div {
    display: grid;
}

.hkrh-cart-drawer-head small {
    color: var(--hkrh-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hkrh-mini-cart-content {
    padding: 16px 20px 24px;
}

.hkrh-mini-cart-content .woocommerce-mini-cart,
.hkrh-mini-cart-content .cart_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hkrh-mini-cart-content .woocommerce-mini-cart-item {
    position: relative;
    min-height: 0;
    padding: 15px 32px 15px 0;
    border-bottom: 1px solid var(--hkrh-border);
}

.hkrh-mini-cart-content .woocommerce-mini-cart-item > a:not(.remove) {
    display: block;
    color: var(--hkrh-cart-drawer-text);
    font-family: var(--hkrh-heading-font);
    font-size: 13px;
    font-weight: 700;
}

.hkrh-mini-cart-content .woocommerce-mini-cart-item img {
    display: none !important;
}

.hkrh-mini-cart-content .remove_from_cart_button {
    position: absolute;
    top: 13px;
    right: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #a34b4b !important;
    background: #fff1f1;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
}

.hkrh-mini-cart-content .quantity {
    display: block;
    margin-top: 6px;
    color: var(--hkrh-muted);
    font-size: 12px;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__total {
    margin: 18px 0 14px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--hkrh-border);
    border-bottom: 1px solid var(--hkrh-border);
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons {
    display: grid;
    gap: 9px;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons a,
.hkrh-cart-shop-link {
    min-height: 48px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--hkrh-topbar-bg);
    border-radius: 999px;
    font-family: var(--hkrh-heading-font);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons .checkout {
    color: var(--hkrh-button-text);
    background: var(--hkrh-button-bg);
}

.hkrh-cart-empty {
    padding: 45px 10px;
    text-align: center;
}

.hkrh-cart-empty p {
    margin: 0 0 18px;
    color: var(--hkrh-muted);
}

body.hkrh-drawer-open {
    overflow: hidden;
}

/* Mobile state is added by JS according to the configured breakpoint. */
.hkrh-root.hkrh-is-mobile .hkrh-topbar {
    display: none;
}

.hkrh-root.hkrh-is-mobile .hkrh-main-inner {
    min-height: 66px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-menu-toggle,
.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-toggle {
    display: grid;
}

.hkrh-root.hkrh-is-mobile .hkrh-logo-wrap {
    display: flex;
    justify-content: center;
}

.hkrh-root.hkrh-is-mobile .hkrh-logo,
.hkrh-root.hkrh-is-mobile .hkrh-text-logo {
    max-width: var(--hkrh-mobile-logo-width);
}

.hkrh-root.hkrh-is-mobile .hkrh-logo-image {
    max-width: var(--hkrh-mobile-logo-width);
    max-height: 48px;
}

.hkrh-root.hkrh-is-mobile .hkrh-text-logo-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
}

.hkrh-root.hkrh-is-mobile .hkrh-text-logo > span:last-child {
    display: none;
}

.hkrh-root.hkrh-is-mobile .hkrh-desktop-search,
.hkrh-root.hkrh-is-mobile .hkrh-account-link,
.hkrh-root.hkrh-is-mobile .hkrh-wishlist-link,
.hkrh-root.hkrh-is-mobile .hkrh-nav-row {
    display: none;
}

.hkrh-root.hkrh-is-mobile .hkrh-actions {
    gap: 6px;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-button {
    min-width: 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 999px;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-copy {
    display: none;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-count {
    top: -4px;
    right: -5px;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-panel .hkrh-inner {
    padding-inline: 15px;
}

@media (max-width: 782px) {
    .admin-bar .hkrh-header {
        top: 46px;
    }
}

@media (max-width: 480px) {
    .hkrh-inner {
        padding-inline: 14px;
    }

    .hkrh-root.hkrh-is-mobile .hkrh-main-inner {
        grid-template-columns: 42px minmax(70px, 1fr) auto;
    }

    .hkrh-root.hkrh-is-mobile .hkrh-actions {
        gap: 4px;
    }

    .hkrh-mobile-drawer,
    .hkrh-cart-drawer {
        width: 94vw;
    }
}


/* ==========================================================
   v1.1 — Storefront layout / Inter typography / Elementor fix
   ========================================================== */
.hkrh-root,
.hkrh-root * {
    font-family: var(--hkrh-body-font) !important;
}

.hkrh-root.hkrh-full-width {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.hkrh-root .hkrh-header {
    width: 100% !important;
}

.hkrh-root .hkrh-mobile-menu-toggle,
.hkrh-root .hkrh-mobile-search-toggle {
    display: none !important;
}

.hkrh-root .hkrh-topbar-inner {
    position: relative;
    justify-content: center;
    text-align: center;
}

.hkrh-root .hkrh-topbar-message {
    justify-content: center;
    width: 100%;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hkrh-root .hkrh-topbar-dot {
    display: none;
}

.hkrh-root .hkrh-topbar-link {
    position: absolute;
    right: var(--hkrh-padding-x);
    top: 50%;
    transform: translateY(-50%);
}

.hkrh-root .hkrh-main-row {
    min-height: 0;
}

.hkrh-root .hkrh-main-inner {
    min-height: var(--hkrh-main-row-height);
    padding-block: 20px;
    display: grid !important;
    grid-template-columns: minmax(210px, 270px) minmax(420px, 1fr) auto !important;
    grid-template-areas: "logo search actions";
    align-items: center !important;
    gap: clamp(28px, 3vw, 58px) !important;
}

.hkrh-root .hkrh-logo-wrap {
    grid-area: logo;
    display: flex;
    align-items: center;
    min-width: 0;
}

.hkrh-root .hkrh-logo,
.hkrh-root .hkrh-text-logo {
    max-width: var(--hkrh-logo-width) !important;
}

.hkrh-root .hkrh-logo-image {
    width: auto !important;
    max-width: var(--hkrh-logo-width) !important;
    max-height: 70px !important;
}

.hkrh-root .hkrh-text-logo-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    font-size: 20px;
}

.hkrh-root .hkrh-text-logo strong {
    font-family: var(--hkrh-heading-font) !important;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: .07em;
}

.hkrh-root .hkrh-text-logo small {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hkrh-root .hkrh-desktop-search {
    grid-area: search;
    display: block;
    width: 100%;
    min-width: 0;
}

.hkrh-root .hkrh-search-form {
    width: 100% !important;
    grid-template-columns: minmax(0, 1fr) 72px !important;
}

.hkrh-root .hkrh-search-input {
    min-width: 0 !important;
    padding-inline: 22px !important;
    border-radius: 8px 0 0 8px !important;
    font-weight: 500;
}

.hkrh-root .hkrh-search-submit {
    width: 72px !important;
    border-radius: 0 8px 8px 0 !important;
}

.hkrh-root .hkrh-actions {
    grid-area: actions;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(18px, 2vw, 32px) !important;
    min-width: max-content;
}

.hkrh-root .hkrh-action-link {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: var(--hkrh-action-icon);
    font-family: var(--hkrh-heading-font) !important;
    font-size: var(--hkrh-action-size) !important;
    font-weight: 700 !important;
}

.hkrh-root .hkrh-action-link svg {
    width: 22px;
    height: 22px;
}

.hkrh-root .hkrh-cart-button {
    min-width: 150px !important;
    min-height: 58px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    color: var(--hkrh-cart-text) !important;
    background: var(--hkrh-cart-bg) !important;
    border: 1px solid var(--hkrh-cart-bg) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

.hkrh-root .hkrh-cart-icon {
    display: none !important;
}

.hkrh-root .hkrh-cart-copy {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: inherit !important;
}

.hkrh-root .hkrh-cart-copy small {
    color: inherit !important;
    font-family: var(--hkrh-heading-font) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.hkrh-root .hkrh-cart-copy strong {
    color: inherit !important;
    font-size: 11px !important;
}

.hkrh-root .hkrh-cart-count {
    position: static !important;
    min-width: 30px !important;
    height: 30px !important;
    padding-inline: 8px !important;
    flex: 0 0 auto;
    font-size: 12px !important;
}

.hkrh-root .hkrh-nav-inner {
    min-height: var(--hkrh-nav-row-height);
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 34px !important;
}

.hkrh-root .hkrh-menu {
    gap: clamp(24px, 3vw, 56px) !important;
}

.hkrh-root .hkrh-menu > li > a {
    min-height: var(--hkrh-nav-row-height) !important;
    font-family: var(--hkrh-heading-font) !important;
    font-size: var(--hkrh-menu-size) !important;
    font-weight: var(--hkrh-menu-weight) !important;
}

.hkrh-root .hkrh-shop-button {
    min-height: 46px !important;
    padding: 12px 24px !important;
    font-family: var(--hkrh-heading-font) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

/* Tablet and mobile layout. The JS class follows the breakpoint selected in settings. */
.hkrh-root.hkrh-is-mobile .hkrh-topbar {
    display: none !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-main-inner {
    min-height: 72px !important;
    padding-block: 10px !important;
    grid-template-columns: 46px minmax(90px, 1fr) auto !important;
    grid-template-areas: "menu logo actions" !important;
    gap: 10px !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-menu-toggle {
    grid-area: menu;
    display: grid !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-logo-wrap {
    grid-area: logo;
    justify-content: center;
}

.hkrh-root.hkrh-is-mobile .hkrh-actions {
    grid-area: actions;
    display: flex !important;
    gap: 6px !important;
    min-width: 0;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-toggle {
    display: grid !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-button {
    min-width: 44px !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-icon {
    display: grid !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-copy {
    display: none !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-cart-count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    min-width: 21px !important;
    height: 21px !important;
    padding-inline: 5px !important;
    font-size: 9px !important;
}

@media (max-width: 640px) {
    .hkrh-root .hkrh-inner {
        padding-inline: 14px !important;
    }

    .hkrh-root.hkrh-is-mobile .hkrh-logo-image {
        max-height: 48px !important;
    }
}


/* 1.4.0 — mini-panier Hypno-Kit : navy, lime, crème, sans rose Elementor */
.hkrh-cart-drawer,
.hkrh-cart-drawer a,
.hkrh-cart-drawer button {
    font-family: var(--hkrh-body-font) !important;
}

.hkrh-cart-drawer-head {
    color: #03111f !important;
    background: #ffffff !important;
}

.hkrh-cart-drawer .hkrh-drawer-close {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
    border-radius: 10px !important;
    opacity: 1 !important;
}

.hkrh-cart-drawer .hkrh-drawer-close:hover,
.hkrh-cart-drawer .hkrh-drawer-close:focus {
    color: #ffffff !important;
    background: #03111f !important;
    border-color: #03111f !important;
}

.hkrh-mini-cart-content .woocommerce-mini-cart-item > a:not(.remove),
.hkrh-mini-cart-content .woocommerce-mini-cart-item > a:not(.remove):visited,
.hkrh-mini-cart-content .woocommerce-mini-cart-item > a:not(.remove):hover,
.hkrh-mini-cart-content .woocommerce-mini-cart-item > a:not(.remove):focus {
    color: #03111f !important;
    background: transparent !important;
    text-decoration: none !important;
}

.hkrh-mini-cart-content .remove_from_cart_button,
.hkrh-mini-cart-content .remove_from_cart_button:visited {
    color: #03111f !important;
    background: #d8ef19 !important;
    border: 0 !important;
    text-decoration: none !important;
}

.hkrh-mini-cart-content .remove_from_cart_button:hover,
.hkrh-mini-cart-content .remove_from_cart_button:focus,
.hkrh-mini-cart-content .remove_from_cart_button.is-loading {
    color: #ffffff !important;
    background: #03111f !important;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons a,
.hkrh-mini-cart-content .woocommerce-mini-cart__buttons a:visited {
    color: #ffffff !important;
    background: #03111f !important;
    border: 1px solid #03111f !important;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons a:hover,
.hkrh-mini-cart-content .woocommerce-mini-cart__buttons a:focus {
    color: #03111f !important;
    background: #f4eee3 !important;
    border-color: #03111f !important;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons .checkout,
.hkrh-mini-cart-content .woocommerce-mini-cart__buttons .checkout:visited {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__buttons .checkout:hover,
.hkrh-mini-cart-content .woocommerce-mini-cart__buttons .checkout:focus {
    color: #ffffff !important;
    background: #03111f !important;
    border-color: #03111f !important;
}

.hkrh-mini-cart-content .woocommerce-mini-cart__total strong,
.hkrh-mini-cart-content .woocommerce-mini-cart__total {
    color: #03111f !important;
}

.hkrh-mini-cart-content .blockUI.blockOverlay {
    background: rgba(255,255,255,.72) !important;
}


/* 1.4.1 — zone de clic élargie pour tous les boutons de suppression */
.hkrh-cart-drawer .woocommerce-mini-cart-item,
.hkrh-cart-drawer .wpr-mini-cart-item {
    position: relative !important;
}

.hkrh-cart-drawer .wpr-mini-cart-image {
    display: none !important;
}

.hkrh-cart-drawer .wpr-mini-cart-name-and-quantity {
    width: 100% !important;
    padding-right: 52px !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove,
.hkrh-cart-drawer .woocommerce-mini-cart-item > .remove {
    position: absolute !important;
    top: 50% !important;
    right: 4px !important;
    z-index: 30 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove > a,
.hkrh-cart-drawer .remove_from_cart_button,
.hkrh-cart-drawer .wpr-remove-item-from-mini-cart {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #03111f !important;
    background: #d8ef19 !important;
    border: 2px solid #d8ef19 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove > a:hover,
.hkrh-cart-drawer .wpr-mini-cart-remove > a:focus,
.hkrh-cart-drawer .remove_from_cart_button:hover,
.hkrh-cart-drawer .remove_from_cart_button:focus {
    color: #ffffff !important;
    background: #03111f !important;
    border-color: #03111f !important;
    outline: none !important;
}

.hkrh-cart-drawer .wpr-mini-cart-product-name a,
.hkrh-cart-drawer .wpr-mini-cart-name,
.hkrh-cart-drawer .wpr-mini-cart-quantity {
    color: #03111f !important;
}

@media (max-width: 640px) {
    .hkrh-cart-drawer .wpr-mini-cart-remove,
    .hkrh-cart-drawer .woocommerce-mini-cart-item > .remove {
        right: 0 !important;
    }
}


/* 1.4.2 — toute la zone autour de la croix devient cliquable */
.hkrh-cart-drawer .wpr-mini-cart-name-and-quantity {
    padding-right: 72px !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove {
    top: 50% !important;
    right: -2px !important;
    z-index: 100 !important;
    width: 62px !important;
    height: 62px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    background: transparent !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove > a,
.hkrh-cart-drawer .wpr-remove-item-from-mini-cart {
    position: relative !important;
    inset: auto !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    pointer-events: auto !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.hkrh-cart-drawer .wpr-mini-cart-product-name,
.hkrh-cart-drawer .wpr-mini-cart-product-name a {
    position: relative !important;
    z-index: 1 !important;
}

.hkrh-cart-drawer .wpr-mini-cart-remove {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
    .hkrh-cart-drawer .wpr-mini-cart-remove {
        right: -6px !important;
        width: 66px !important;
        height: 66px !important;
    }
}


/* ==========================================================
   1.4.3 — Menu mobile avec logo téléversé et branding Hypno-Kit
   ========================================================== */

/* Le logo est retiré de la barre mobile : hamburger à gauche,
   recherche/panier à droite. */
.hkrh-root.hkrh-is-mobile .hkrh-main-inner {
    grid-template-columns: 46px minmax(0, 1fr) auto !important;
    grid-template-areas: "menu empty actions" !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-logo-wrap {
    display: none !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-menu-toggle {
    grid-area: menu !important;
    color: #03111f !important;
    background: #ffffff !important;
    border-color: #03111f !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-menu-toggle:hover,
.hkrh-root.hkrh-is-mobile .hkrh-mobile-menu-toggle:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-actions {
    grid-area: actions !important;
    justify-self: end !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-toggle {
    color: #03111f !important;
    background: #ffffff !important;
    border-color: #03111f !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-toggle:hover,
.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-toggle:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

/* Neutralise les couleurs globales rose/violet d’Elementor
   uniquement à l’intérieur du header. */
.hkrh-root {
    --e-global-color-primary: #03111f;
    --e-global-color-secondary: #0a2235;
    --e-global-color-text: #071523;
    --e-global-color-accent: #d8ef19;
}

/* Tiroir mobile : navy, blanc, lime et crème. */
.hkrh-mobile-drawer {
    color: #ffffff !important;
    background: #03111f !important;
}

.hkrh-mobile-drawer-head {
    min-height: 86px;
    padding: 16px 18px !important;
    color: #ffffff !important;
    background: #03111f !important;
    border-bottom: 1px solid rgba(255,255,255,.14) !important;
}

.hkrh-mobile-drawer-logo {
    min-width: 0;
    display: flex;
    align-items: center;
}

.hkrh-mobile-drawer-logo .hkrh-logo,
.hkrh-mobile-drawer-logo .hkrh-text-logo {
    width: auto !important;
    max-width: min(190px, 58vw) !important;
    color: #ffffff !important;
}

.hkrh-mobile-drawer-logo .hkrh-logo-image {
    display: block !important;
    width: auto !important;
    max-width: min(190px, 58vw) !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

.hkrh-mobile-drawer-logo .hkrh-text-logo-mark {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-mobile-drawer-logo .hkrh-text-logo strong,
.hkrh-mobile-drawer-logo .hkrh-text-logo small {
    color: #ffffff !important;
}

.hkrh-mobile-drawer .hkrh-drawer-close {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
    border-radius: 10px !important;
}

.hkrh-mobile-drawer .hkrh-drawer-close:hover,
.hkrh-mobile-drawer .hkrh-drawer-close:focus {
    color: #ffffff !important;
    background: #0a2235 !important;
    border-color: #ffffff !important;
}

.hkrh-mobile-menu-content {
    padding-top: 10px !important;
}

.hkrh-mobile-menu > li,
.hkrh-mobile-menu .sub-menu {
    border-color: rgba(255,255,255,.12) !important;
}

.hkrh-mobile-menu > li > a,
.hkrh-mobile-menu > li > a:visited,
.hkrh-mobile-menu .sub-menu a,
.hkrh-mobile-menu .sub-menu a:visited {
    color: #ffffff !important;
    background: transparent !important;
    border-color: rgba(255,255,255,.12) !important;
    text-decoration: none !important;
}

.hkrh-mobile-menu > li > a:hover,
.hkrh-mobile-menu > li > a:focus,
.hkrh-mobile-menu .sub-menu a:hover,
.hkrh-mobile-menu .sub-menu a:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
}

.hkrh-mobile-menu .current-menu-item > a,
.hkrh-mobile-menu .current-menu-ancestor > a {
    color: #d8ef19 !important;
    background: #0a2235 !important;
}

.hkrh-mobile-menu .current-menu-item > a:hover,
.hkrh-mobile-menu .current-menu-ancestor > a:hover {
    color: #03111f !important;
    background: #d8ef19 !important;
}

.hkrh-mobile-menu .hkrh-submenu-toggle,
.hkrh-mobile-menu .hkrh-submenu-toggle:hover,
.hkrh-mobile-menu .hkrh-submenu-toggle:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-mobile-drawer-actions {
    color: #ffffff !important;
    background: #0a2235 !important;
    border-top: 1px solid rgba(255,255,255,.14) !important;
}

.hkrh-mobile-drawer-actions a,
.hkrh-mobile-drawer-actions a:visited {
    color: #ffffff !important;
    background: transparent !important;
    border-color: rgba(255,255,255,.16) !important;
}

.hkrh-mobile-drawer-actions a:hover,
.hkrh-mobile-drawer-actions a:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-mobile-drawer-actions svg {
    color: currentColor !important;
}

/* Recherche mobile sans accent Elementor. */
.hkrh-mobile-search-panel {
    background: #f4eee3 !important;
    border-color: #dfe3e6 !important;
}

.hkrh-mobile-search-panel .hkrh-search-input {
    color: #071523 !important;
    background: #ffffff !important;
    border-color: #03111f !important;
}

.hkrh-mobile-search-panel .hkrh-search-submit {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

@media (max-width: 480px) {
    .hkrh-root.hkrh-is-mobile .hkrh-main-inner {
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        gap: 8px !important;
    }

    .hkrh-mobile-drawer-logo .hkrh-logo-image {
        max-width: 150px !important;
        max-height: 48px !important;
    }
}


/* ==========================================================
   1.4.4 — Liens du menu mobile sous forme de cartes arrondies
   ========================================================== */

.hkrh-screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hkrh-mobile-menu-content {
    padding: 18px 18px 28px !important;
}

.hkrh-mobile-menu {
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 11px !important;
}

.hkrh-mobile-menu > li {
    margin: 0 !important;
    overflow: hidden !important;
    background: rgba(10, 34, 53, .52) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.hkrh-mobile-menu > li > a,
.hkrh-mobile-menu > li > a:visited {
    min-height: 58px !important;
    padding: 17px 18px !important;
    display: flex !important;
    align-items: center !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 13px !important;
    line-height: 1.25 !important;
}

.hkrh-mobile-menu > li > a:hover,
.hkrh-mobile-menu > li > a:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    box-shadow: none !important;
}

.hkrh-mobile-menu .current-menu-item,
.hkrh-mobile-menu .current-menu-ancestor {
    background: #0a2235 !important;
    border-color: rgba(216, 239, 25, .52) !important;
}

.hkrh-mobile-menu .current-menu-item > a,
.hkrh-mobile-menu .current-menu-ancestor > a {
    color: #ffffff !important;
    background: #0a2235 !important;
}

.hkrh-mobile-menu .current-menu-item > a:hover,
.hkrh-mobile-menu .current-menu-ancestor > a:hover,
.hkrh-mobile-menu .current-menu-item > a:focus,
.hkrh-mobile-menu .current-menu-ancestor > a:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
}

/* Sous-menus : retrait interne et cartes plus compactes. */
.hkrh-mobile-menu .menu-item-has-children {
    padding-bottom: 0 !important;
}

.hkrh-mobile-menu .sub-menu {
    margin: 0 !important;
    padding: 0 10px !important;
    background: transparent !important;
    border: 0 !important;
}

.hkrh-mobile-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    padding-top: 2px !important;
    padding-bottom: 10px !important;
}

.hkrh-mobile-menu .sub-menu li {
    margin: 8px 0 0 !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    border-radius: 11px !important;
}

.hkrh-mobile-menu .sub-menu a,
.hkrh-mobile-menu .sub-menu a:visited {
    min-height: 48px !important;
    padding: 13px 14px !important;
    display: flex !important;
    align-items: center !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 10px !important;
}

.hkrh-mobile-menu .sub-menu a:hover,
.hkrh-mobile-menu .sub-menu a:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
}

/* Le bouton d’ouverture d’un sous-menu ne touche plus le texte. */
.hkrh-mobile-menu .hkrh-submenu-toggle {
    top: 9px !important;
    right: 9px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
}

.hkrh-mobile-menu .menu-item-has-children > a {
    padding-right: 62px !important;
}

/* Zone compte : uniquement l’icône sur mobile. */
.hkrh-mobile-drawer-actions {
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
}

.hkrh-mobile-drawer-actions .hkrh-mobile-account-icon {
    width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 16px !important;
}

.hkrh-mobile-drawer-actions .hkrh-mobile-account-icon:hover,
.hkrh-mobile-drawer-actions .hkrh-mobile-account-icon:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-mobile-drawer-actions .hkrh-mobile-account-icon svg {
    width: 25px !important;
    height: 25px !important;
}

/* Les autres actions éventuelles gardent leur libellé. */
.hkrh-mobile-drawer-actions > a:not(.hkrh-mobile-account-icon) {
    min-height: 54px !important;
    padding: 0 16px !important;
    border-radius: 14px !important;
}

@media (max-width: 480px) {
    .hkrh-mobile-menu-content {
        padding: 16px 14px 24px !important;
    }

    .hkrh-mobile-menu {
        gap: 9px !important;
    }

    .hkrh-mobile-menu > li {
        border-radius: 13px !important;
    }

    .hkrh-mobile-menu > li > a,
    .hkrh-mobile-menu > li > a:visited {
        min-height: 54px !important;
        padding: 15px 15px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
    }

    .hkrh-mobile-drawer-actions .hkrh-mobile-account-icon {
        width: 54px !important;
        min-width: 54px !important;
        height: 54px !important;
        min-height: 54px !important;
        border-radius: 14px !important;
    }
}


/* ==========================================================
   1.4.5 — Barre principale sticky avec animation
   ========================================================== */

.hkrh-root {
    --hkrh-sticky-offset: 0px;
    --hkrh-stuck-main-height: 78px;
}

.admin-bar .hkrh-root {
    --hkrh-sticky-offset: 32px;
}

@media (max-width: 782px) {
    .admin-bar .hkrh-root {
        --hkrh-sticky-offset: 46px;
    }
}

/* Le header complet n’est plus sticky. */
.hkrh-root .hkrh-header {
    position: relative !important;
    top: auto !important;
    z-index: 999 !important;
    box-shadow: none !important;
}

.hkrh-sticky-sentinel {
    width: 1px;
    height: 1px;
    margin-bottom: -1px;
    pointer-events: none;
}

.hkrh-root .hkrh-main-row {
    position: var(--hkrh-position) !important;
    top: var(--hkrh-sticky-offset) !important;
    z-index: 1001 !important;
    width: 100% !important;
    background: var(--hkrh-main-bg) !important;
    box-shadow: 0 0 0 rgba(3, 17, 31, 0);
    transition:
        box-shadow .28s ease,
        background-color .28s ease,
        border-color .28s ease,
        transform .28s ease !important;
    will-change: box-shadow, transform;
}

.hkrh-root .hkrh-main-inner,
.hkrh-root .hkrh-logo-image,
.hkrh-root .hkrh-search-form,
.hkrh-root .hkrh-icon-button,
.hkrh-root .hkrh-cart-button,
.hkrh-root .hkrh-action-link {
    transition:
        min-height .28s ease,
        height .28s ease,
        max-height .28s ease,
        padding .28s ease,
        transform .28s ease,
        border-radius .28s ease !important;
}

.hkrh-root.hkrh-main-is-stuck .hkrh-main-row {
    background: rgba(255, 255, 255, .96) !important;
    border-bottom-color: rgba(3, 17, 31, .12) !important;
    box-shadow: 0 14px 38px rgba(3, 17, 31, .14) !important;
    -webkit-backdrop-filter: blur(15px) saturate(145%);
    backdrop-filter: blur(15px) saturate(145%);
    animation: hkrh-main-row-enter .32s cubic-bezier(.2, .75, .25, 1) both;
}

.hkrh-root.hkrh-main-is-stuck .hkrh-main-inner {
    min-height: var(--hkrh-stuck-main-height) !important;
    padding-block: 9px !important;
}

.hkrh-root.hkrh-main-is-stuck .hkrh-logo-image {
    max-height: 52px !important;
}

.hkrh-root.hkrh-main-is-stuck .hkrh-search-form {
    min-height: 50px !important;
}

.hkrh-root.hkrh-main-is-stuck .hkrh-search-input,
.hkrh-root.hkrh-main-is-stuck .hkrh-search-submit {
    min-height: 50px !important;
    height: 50px !important;
}

@keyframes hkrh-main-row-enter {
    0% {
        opacity: .82;
        transform: translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar mobile du haut : icône profil uniquement. */
.hkrh-root.hkrh-is-mobile .hkrh-account-link {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #03111f !important;
    background: #ffffff !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-account-link > span {
    display: none !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-account-link svg {
    width: 25px !important;
    height: 25px !important;
}

.hkrh-root.hkrh-is-mobile .hkrh-account-link:hover,
.hkrh-root.hkrh-is-mobile .hkrh-account-link:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

/* Sidebar mobile : icône + texte Mon compte. */
.hkrh-mobile-drawer-actions .hkrh-mobile-account-link {
    min-height: 58px !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 13px !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 16px !important;
    font-weight: 800 !important;
}

.hkrh-mobile-drawer-actions .hkrh-mobile-account-link:hover,
.hkrh-mobile-drawer-actions .hkrh-mobile-account-link:focus {
    color: #03111f !important;
    background: #d8ef19 !important;
    border-color: #d8ef19 !important;
}

.hkrh-mobile-drawer-actions .hkrh-mobile-account-link svg {
    width: 25px !important;
    height: 25px !important;
}

/* La recherche mobile reste sous la barre sticky. */
.hkrh-root.hkrh-is-mobile .hkrh-mobile-search-panel:not([hidden]) {
    position: fixed !important;
    top: calc(var(--hkrh-sticky-offset) + 72px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1002 !important;
    width: 100% !important;
    box-shadow: 0 16px 30px rgba(3, 17, 31, .12) !important;
}

.hkrh-root.hkrh-is-mobile.hkrh-main-is-stuck .hkrh-main-inner {
    min-height: 66px !important;
    padding-block: 7px !important;
}

.hkrh-root.hkrh-is-mobile.hkrh-main-is-stuck .hkrh-mobile-search-panel:not([hidden]) {
    top: calc(var(--hkrh-sticky-offset) + 66px) !important;
}

@media (max-width: 480px) {
    .hkrh-root.hkrh-is-mobile .hkrh-actions {
        gap: 4px !important;
    }

    .hkrh-root.hkrh-is-mobile .hkrh-account-link {
        width: 42px !important;
        min-width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
    }

    .hkrh-mobile-drawer-actions .hkrh-mobile-account-link {
        min-height: 54px !important;
        padding-inline: 17px !important;
        border-radius: 14px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hkrh-root .hkrh-main-row,
    .hkrh-root .hkrh-main-inner,
    .hkrh-root .hkrh-logo-image,
    .hkrh-root .hkrh-search-form,
    .hkrh-root .hkrh-icon-button,
    .hkrh-root .hkrh-cart-button,
    .hkrh-root .hkrh-action-link {
        transition: none !important;
        animation: none !important;
    }
}


/* ==========================================================
   1.4.6 — Barre principale réellement fixe pendant tout le scroll
   ========================================================== */

.hkrh-root {
    --hkrh-main-row-space: 0px;
}

/* État normal : la rangée reste dans le flux du document. */
.hkrh-root .hkrh-main-row {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
}

/* Le sentinel prend la hauteur de la rangée lorsqu’elle devient fixe,
   afin d’éviter un saut du contenu. */
.hkrh-root .hkrh-sticky-sentinel {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    transition: height .18s ease !important;
}

.hkrh-root.hkrh-main-is-stuck .hkrh-sticky-sentinel {
    height: var(--hkrh-main-row-space) !important;
}

/* État fixe : visible pendant toute la durée du défilement. */
.hkrh-root.hkrh-main-is-stuck .hkrh-main-row {
    position: fixed !important;
    top: var(--hkrh-sticky-offset) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
    width: 100% !important;
    max-width: none !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* La largeur interne reste conforme au réglage du plugin. */
.hkrh-root.hkrh-main-is-stuck .hkrh-main-inner {
    width: min(100%, var(--hkrh-max-width)) !important;
    margin-inline: auto !important;
}

/* Évite que le thème ou Elementor masque la barre fixe. */
body.hkrh-main-row-fixed .hkrh-main-row {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

body.hkrh-main-row-fixed {
    overflow-x: clip;
}

/* Recherche mobile toujours positionnée juste sous la barre fixe. */
.hkrh-root.hkrh-is-mobile.hkrh-main-is-stuck .hkrh-mobile-search-panel:not([hidden]) {
    position: fixed !important;
    top: calc(var(--hkrh-sticky-offset) + 66px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100001 !important;
}

/* ==========================================================
   1.4.6 — Menu mobile plus compact
   ========================================================== */

.hkrh-mobile-menu-content {
    padding: 12px 14px 18px !important;
}

.hkrh-mobile-menu {
    gap: 5px !important;
}

.hkrh-mobile-menu > li {
    margin: 0 !important;
    border-radius: 12px !important;
}

.hkrh-mobile-menu > li > a,
.hkrh-mobile-menu > li > a:visited {
    min-height: 48px !important;
    padding: 11px 14px !important;
    border-radius: 11px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.hkrh-mobile-menu .menu-item-has-children > a {
    padding-right: 54px !important;
}

.hkrh-mobile-menu .hkrh-submenu-toggle {
    top: 5px !important;
    right: 6px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
}

.hkrh-mobile-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    padding: 0 7px 7px !important;
}

.hkrh-mobile-menu .sub-menu li {
    margin: 5px 0 0 !important;
    border-radius: 10px !important;
}

.hkrh-mobile-menu .sub-menu a,
.hkrh-mobile-menu .sub-menu a:visited {
    min-height: 43px !important;
    padding: 10px 12px !important;
    border-radius: 9px !important;
    font-size: 12px !important;
}

.hkrh-mobile-drawer-actions {
    padding: 13px 14px !important;
}

.hkrh-mobile-drawer-actions .hkrh-mobile-account-link {
    min-height: 50px !important;
    padding: 0 16px !important;
    border-radius: 13px !important;
}

@media (max-width: 480px) {
    .hkrh-mobile-menu-content {
        padding: 10px 12px 16px !important;
    }

    .hkrh-mobile-menu {
        gap: 4px !important;
    }

    .hkrh-mobile-menu > li {
        border-radius: 11px !important;
    }

    .hkrh-mobile-menu > li > a,
    .hkrh-mobile-menu > li > a:visited {
        min-height: 46px !important;
        padding: 10px 12px !important;
        border-radius: 10px !important;
        font-size: 12.5px !important;
    }

    .hkrh-mobile-menu .hkrh-submenu-toggle {
        top: 5px !important;
        right: 5px !important;
        width: 34px !important;
        height: 34px !important;
    }

    .hkrh-mobile-drawer-actions {
        padding: 11px 12px !important;
    }

    .hkrh-mobile-drawer-actions .hkrh-mobile-account-link {
        min-height: 48px !important;
        padding-inline: 14px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hkrh-root .hkrh-sticky-sentinel {
        transition: none !important;
    }
}


/* ==========================================================
   1.4.7 — Éléments du menu mobile réellement rapprochés
   ========================================================== */

/* L’ancien affichage en grille pouvait étirer les lignes pour
   remplir toute la hauteur disponible du tiroir. */
.hkrh-mobile-menu {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    align-content: flex-start !important;
    justify-content: flex-start !important;
    gap: 6px !important;
}

.hkrh-mobile-menu > li {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
}

.hkrh-mobile-menu > li + li {
    margin-top: 0 !important;
}

.hkrh-mobile-menu > li > a,
.hkrh-mobile-menu > li > a:visited {
    width: 100% !important;
    height: auto !important;
    min-height: 46px !important;
    max-height: none !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important;
}

.hkrh-mobile-menu-content {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 14px !important;
}

/* Sous-menus également rapprochés. */
.hkrh-mobile-menu .sub-menu {
    display: block !important;
}

.hkrh-mobile-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    padding-top: 3px !important;
    padding-bottom: 5px !important;
}

.hkrh-mobile-menu .sub-menu li {
    margin-top: 4px !important;
}

@media (max-width: 480px) {
    .hkrh-mobile-menu {
        gap: 4px !important;
    }

    .hkrh-mobile-menu > li > a,
    .hkrh-mobile-menu > li > a:visited {
        min-height: 44px !important;
        padding: 8px 12px !important;
    }

    .hkrh-mobile-menu-content {
        padding-top: 8px !important;
        padding-bottom: 12px !important;
    }
}


/* ==========================================================
   1.4.8 — Suppression des grands espaces dans les cartes
   ========================================================== */

.hkrh-mobile-menu {
    gap: 7px !important;
}

/* Les éléments simples ont maintenant une hauteur explicite.
   Cela neutralise les hauteurs héritées du menu desktop,
   d’Elementor ou du thème. */
.hkrh-mobile-menu > li:not(.menu-item-has-children) {
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    overflow: hidden !important;
}

.hkrh-mobile-menu > li:not(.menu-item-has-children) > a,
.hkrh-mobile-menu > li:not(.menu-item-has-children) > a:visited {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* Les éléments avec sous-menu restent compacts lorsqu’ils sont fermés. */
.hkrh-mobile-menu > li.menu-item-has-children:not(.is-submenu-open) {
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    overflow: hidden !important;
}

.hkrh-mobile-menu > li.menu-item-has-children:not(.is-submenu-open) > a {
    height: 58px !important;
    min-height: 58px !important;
    padding-block: 0 !important;
}

/* Quand un sous-menu est ouvert, le parent reprend une hauteur automatique. */
.hkrh-mobile-menu > li.menu-item-has-children.is-submenu-open {
    height: auto !important;
    min-height: 58px !important;
    max-height: none !important;
}

.hkrh-mobile-menu > li.menu-item-has-children.is-submenu-open > a {
    height: 58px !important;
    min-height: 58px !important;
    padding-block: 0 !important;
}

/* La zone autour de la liste ne crée plus d’espace supplémentaire. */
.hkrh-mobile-menu-content {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

@media (max-width: 480px) {
    .hkrh-mobile-menu {
        gap: 5px !important;
    }

    .hkrh-mobile-menu > li:not(.menu-item-has-children),
    .hkrh-mobile-menu > li.menu-item-has-children:not(.is-submenu-open) {
        height: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;
    }

    .hkrh-mobile-menu > li:not(.menu-item-has-children) > a,
    .hkrh-mobile-menu > li:not(.menu-item-has-children) > a:visited,
    .hkrh-mobile-menu > li.menu-item-has-children:not(.is-submenu-open) > a,
    .hkrh-mobile-menu > li.menu-item-has-children.is-submenu-open > a {
        height: 54px !important;
        min-height: 54px !important;
        padding: 0 14px !important;
    }

    .hkrh-mobile-menu > li.menu-item-has-children.is-submenu-open {
        min-height: 54px !important;
    }

    .hkrh-mobile-menu-content {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}


/* ==========================================================
   1.5.0 — Footer Hypno-Kit entièrement configurable
   ========================================================== */

.hkrh-footer,
.hkrh-footer * {
    box-sizing: border-box;
}

.hkrh-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    color: var(--hkrh-footer-text);
    background: var(--hkrh-footer-bg);
    font-family: var(--hkrh-body-font);
}

.hkrh-footer::before,
.hkrh-footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.hkrh-footer::before {
    width: 420px;
    height: 420px;
    top: -280px;
    right: -120px;
    background: color-mix(in srgb, var(--hkrh-footer-accent) 9%, transparent);
}

.hkrh-footer::after {
    width: 360px;
    height: 360px;
    bottom: -270px;
    left: -170px;
    background: color-mix(in srgb, var(--hkrh-footer-gold) 9%, transparent);
}

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

.hkrh-footer-full-width {
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
}

/* Masquage facultatif du footer existant du thème. */
body.hkrh-replace-theme-footer #colophon,
body.hkrh-replace-theme-footer .site-footer:not(.hkrh-footer),
body.hkrh-replace-theme-footer footer.elementor-location-footer:not(.hkrh-footer),
body.hkrh-replace-theme-footer .elementor-location-footer:not(.hkrh-footer) {
    display: none !important;
}

/* Réassurance */

.hkrh-footer-trust {
    padding-top: calc(var(--hkrh-footer-section-padding) * .72);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hkrh-footer-trust-item {
    min-width: 0;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: color-mix(in srgb, var(--hkrh-footer-card) 88%, transparent);
    border: 1px solid var(--hkrh-footer-line);
    border-radius: var(--hkrh-footer-radius);
}

.hkrh-footer-trust-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: var(--hkrh-footer-button-text);
    background: var(--hkrh-footer-accent);
    border-radius: calc(var(--hkrh-footer-radius) * .72);
}

.hkrh-footer-trust-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hkrh-footer-trust-item strong,
.hkrh-footer-trust-item small {
    display: block;
}

.hkrh-footer-trust-item strong {
    color: var(--hkrh-footer-text);
    font: 800 13px/1.25 var(--hkrh-heading-font);
}

.hkrh-footer-trust-item small {
    margin-top: 4px;
    color: var(--hkrh-footer-muted);
    font-size: 11px;
    line-height: 1.45;
}

/* Corps principal */

.hkrh-footer-main {
    padding:
        var(--hkrh-footer-section-padding)
        0
        calc(var(--hkrh-footer-section-padding) * .95);
    display: grid;
    grid-template-columns:
        minmax(250px, 1.12fr)
        minmax(150px, .66fr)
        minmax(150px, .66fr)
        minmax(220px, .82fr);
    gap: 46px;
}

.hkrh-footer-brand {
    max-width: 330px;
}

.hkrh-footer-logo {
    width: var(--hkrh-footer-logo-width);
    height: var(--hkrh-footer-logo-width);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--hkrh-footer-bg);
    background: var(--hkrh-footer-logo-bg);
    border: 1px solid color-mix(in srgb, var(--hkrh-footer-text) 20%, transparent);
    border-radius: calc(var(--hkrh-footer-radius) + 4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    text-decoration: none;
}

.hkrh-footer-logo-image {
    width: 100%;
    height: 100%;
    padding: 8px;
    display: block;
    object-fit: contain;
}

.hkrh-footer-logo-text {
    padding: 12px;
    font: 800 14px/1.2 var(--hkrh-heading-font);
    text-align: center;
}

.hkrh-footer-brand > p {
    margin: 22px 0 0;
    color: var(--hkrh-footer-muted);
    font-size: 13px;
    line-height: 1.72;
}

.hkrh-footer-brand-badge {
    margin-top: 20px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hkrh-footer-text);
    background: var(--hkrh-footer-bg-2);
    border: 1px solid var(--hkrh-footer-line);
    border-radius: calc(var(--hkrh-footer-radius) * .78);
    font-size: 11px;
    line-height: 1.45;
}

.hkrh-footer-brand-badge > span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    background: var(--hkrh-footer-accent);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px
        color-mix(in srgb, var(--hkrh-footer-accent) 11%, transparent);
}

.hkrh-footer-column h3 {
    margin: 0 0 19px;
    color: var(--hkrh-footer-text);
    font: 900 12px/1.25 var(--hkrh-heading-font);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hkrh-footer-links {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.hkrh-footer-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hkrh-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--hkrh-footer-muted);
    font-size: var(--hkrh-footer-link-size);
    line-height: 1.4;
    text-decoration: none;
    transition:
        color .18s ease,
        transform .18s ease;
}

.hkrh-footer-links a > span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    background: color-mix(in srgb, var(--hkrh-footer-accent) 28%, transparent);
    border-radius: 999px;
    transition:
        width .18s ease,
        background .18s ease;
}

.hkrh-footer-links a:hover,
.hkrh-footer-links a:focus-visible {
    color: var(--hkrh-footer-text);
    transform: translateX(3px);
}

.hkrh-footer-links a:hover > span,
.hkrh-footer-links a:focus-visible > span {
    width: 14px;
    background: var(--hkrh-footer-accent);
}

.hkrh-footer-contact-card {
    padding: 17px;
    display: grid;
    gap: 13px;
    background: color-mix(in srgb, var(--hkrh-footer-card) 90%, transparent);
    border: 1px solid var(--hkrh-footer-line);
    border-radius: var(--hkrh-footer-radius);
}

.hkrh-footer-contact-card small {
    color: var(--hkrh-footer-muted);
    font-size: 11px;
    line-height: 1.55;
}

.hkrh-footer-email {
    color: var(--hkrh-footer-text);
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.hkrh-footer-contact-button {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hkrh-footer-button-text);
    background: var(--hkrh-footer-button-bg);
    border: 1px solid var(--hkrh-footer-button-bg);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    transition:
        color .18s ease,
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.hkrh-footer-contact-button:hover,
.hkrh-footer-contact-button:focus-visible {
    color: var(--hkrh-footer-button-hover-text);
    background: var(--hkrh-footer-button-hover-bg);
    border-color: var(--hkrh-footer-button-hover-bg);
    transform: translateY(-1px);
}

/* Bas du footer */

.hkrh-footer-bottom {
    padding: 22px 0 26px;
    border-top: 1px solid var(--hkrh-footer-line);
}

.hkrh-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hkrh-footer-copyright {
    margin: 0;
    color: var(--hkrh-footer-muted);
    font-size: 10px;
    line-height: 1.5;
}

.hkrh-footer-legal {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
    list-style: none;
}

.hkrh-footer-legal li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hkrh-footer-legal a {
    color: var(--hkrh-footer-muted);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease;
}

.hkrh-footer-legal a:hover,
.hkrh-footer-legal a:focus-visible {
    color: var(--hkrh-footer-accent);
}

/* Retour en haut */

.hkrh-footer-back-top {
    position: absolute;
    right: max(
        var(--hkrh-footer-padding),
        calc((100vw - var(--hkrh-footer-max)) / 2)
    );
    bottom: 74px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--hkrh-footer-button-text);
    background: var(--hkrh-footer-accent);
    border: 1px solid color-mix(in srgb, var(--hkrh-footer-text) 35%, transparent);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    text-decoration: none;
    transition:
        background .18s ease,
        transform .18s ease;
}

.hkrh-footer-back-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hkrh-footer-back-top:hover,
.hkrh-footer-back-top:focus-visible {
    background: var(--hkrh-footer-logo-bg);
    transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 1050px) {
    .hkrh-footer-main {
        grid-template-columns:
            minmax(250px, 1.1fr)
            repeat(2, minmax(170px, .8fr));
    }

    .hkrh-footer-main .hkrh-footer-column:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 820px) {
    .hkrh-footer-trust {
        grid-template-columns: 1fr;
    }

    .hkrh-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 28px;
    }

    .hkrh-footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }

    .hkrh-footer-main .hkrh-footer-column:last-child {
        grid-column: auto;
    }

    .hkrh-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hkrh-footer-legal {
        justify-content: flex-start;
    }

    .hkrh-footer-back-top {
        right: 20px;
        bottom: 26px;
    }
}

@media (max-width: 620px) {
    .hkrh-footer-container {
        width: min(
            calc(100% - 24px),
            var(--hkrh-footer-max)
        );
    }

    .hkrh-footer-trust {
        padding-top: 30px;
    }

    .hkrh-footer-trust-item {
        padding: 15px;
    }

    .hkrh-footer-main {
        padding: 44px 0 38px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hkrh-footer-brand,
    .hkrh-footer-main .hkrh-footer-column:last-child {
        grid-column: auto;
    }

    .hkrh-footer-logo {
        width: min(var(--hkrh-footer-logo-width), 100px);
        height: min(var(--hkrh-footer-logo-width), 100px);
    }

    .hkrh-footer-links {
        gap: 10px;
    }

    .hkrh-footer-bottom {
        padding-bottom: 84px;
    }

    .hkrh-footer-legal {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hkrh-footer-back-top {
        right: 18px;
        bottom: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hkrh-footer *,
    .hkrh-footer *::before,
    .hkrh-footer *::after {
        transition: none !important;
    }
}


/* ==========================================================
   1.6.0 — Page de résultats de recherche Hypno-Kit
   ========================================================== */

.hkrh-search-page,
.hkrh-search-page * {
    box-sizing: border-box;
}

.hkrh-search-page {
    min-height: 70vh;
    color: var(--hkrh-search-results-text);
    background: var(--hkrh-search-results-bg);
    font-family: var(--hkrh-body-font);
}

.hkrh-search-shell {
    width: min(
        calc(100% - 40px),
        1240px
    );
    margin-inline: auto;
}

.hkrh-search-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 76px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 84% 20%,
            color-mix(
                in srgb,
                var(--hkrh-search-results-accent) 14%,
                transparent
            ),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            var(--hkrh-search-results-hero),
            color-mix(
                in srgb,
                var(--hkrh-search-results-hero) 80%,
                #0a3550
            )
        );
}

.hkrh-search-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -250px;
    width: 390px;
    height: 390px;
    background:
        color-mix(
            in srgb,
            var(--hkrh-search-results-accent) 8%,
            transparent
        );
    border-radius: 50%;
    pointer-events: none;
}

.hkrh-search-hero .hkrh-search-shell {
    position: relative;
    z-index: 1;
}

.hkrh-search-eyebrow {
    display: block;
    color: var(--hkrh-search-results-accent);
    font: 850 10px/1.2 var(--hkrh-heading-font);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hkrh-search-hero h1 {
    max-width: 940px;
    margin: 11px 0 16px;
    color: #ffffff;
    font: 900 clamp(38px, 6vw, 74px)/.98 var(--hkrh-heading-font);
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.hkrh-search-hero h1 em {
    color: var(--hkrh-search-results-accent);
    font-style: normal;
}

.hkrh-search-hero > .hkrh-search-shell > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.7;
}

.hkrh-search-page-form {
    max-width: 820px;
    margin-top: 28px;
    padding: 6px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.hkrh-search-page-form input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 17px;
    color: var(--hkrh-search-results-text);
    background: transparent;
    border: 0;
    border-radius: 11px;
    box-shadow: none;
    font: 500 14px/1 var(--hkrh-body-font);
    outline: none;
}

.hkrh-search-page-form button {
    min-width: 142px;
    height: 54px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #03111f;
    background: var(--hkrh-search-results-accent);
    border: 1px solid var(--hkrh-search-results-accent);
    border-radius: 11px;
    font: 850 11px/1 var(--hkrh-body-font);
    cursor: pointer;
}

.hkrh-search-page-form button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.hkrh-search-content {
    padding: 54px 0 86px;
}

.hkrh-search-content-head {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
}

.hkrh-search-content-head > div > span {
    color: #d9a22e;
    font: 850 10px/1.2 var(--hkrh-heading-font);
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hkrh-search-content-head h2 {
    margin: 7px 0 0;
    color: var(--hkrh-search-results-text);
    font: 900 clamp(26px, 4vw, 42px)/1 var(--hkrh-heading-font);
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.hkrh-search-content-head > strong {
    padding: 10px 13px;
    color: #03111f;
    background: var(--hkrh-search-results-accent);
    border-radius: 999px;
    font-size: 10px;
    white-space: nowrap;
}

.hkrh-search-grid {
    display: grid;
    grid-template-columns:
        repeat(
            var(--hkrh-search-results-cols),
            minmax(0, 1fr)
        );
    gap: 20px;
}

.hkrh-search-card {
    min-width: 0;
    overflow: hidden;
    background: var(--hkrh-search-results-card);
    border: 1px solid var(--hkrh-search-results-line);
    border-radius: var(--hkrh-search-results-radius);
    box-shadow: 0 13px 38px rgba(3, 17, 31, .055);
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.hkrh-search-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 19px 48px rgba(3, 17, 31, .1);
}

.hkrh-search-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    padding: 20px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .8),
            color-mix(
                in srgb,
                var(--hkrh-search-results-bg) 88%,
                #ffffff
            )
        );
    text-decoration: none;
}

.hkrh-search-card-media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 13px 32px rgba(3, 17, 31, .15);
}

.hkrh-search-card-placeholder {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    color: var(--hkrh-search-results-muted);
    background: #ffffff;
    border-radius: 18px;
}

.hkrh-search-card-placeholder svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.hkrh-search-promotion-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    max-width: calc(100% - 26px);
    padding: 8px 10px;
    overflow: hidden;
    color: #03111f;
    background: var(--hkrh-search-results-accent);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(3, 17, 31, .14);
    font-size: 9px;
    font-weight: 850;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.hkrh-search-card-body {
    padding: 19px;
}

.hkrh-search-category {
    display: block;
    margin-bottom: 8px;
    color: #d9a22e;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hkrh-search-card h2 {
    margin: 0;
    color: var(--hkrh-search-results-text);
    font: 850 18px/1.28 var(--hkrh-heading-font);
    letter-spacing: -.025em;
}

.hkrh-search-card h2 a {
    color: inherit;
    text-decoration: none;
}

.hkrh-search-card-body > p {
    min-height: 58px;
    margin: 11px 0 0;
    color: var(--hkrh-search-results-muted);
    font-size: 12px;
    line-height: 1.6;
}

.hkrh-search-promotion-message {
    margin-top: 14px;
    padding: 11px;
    background:
        color-mix(
            in srgb,
            var(--hkrh-search-results-accent) 15%,
            #ffffff
        );
    border: 1px solid
        color-mix(
            in srgb,
            var(--hkrh-search-results-accent) 50%,
            #ffffff
        );
    border-radius: 10px;
}

.hkrh-search-promotion-message strong,
.hkrh-search-promotion-message small {
    display: block;
}

.hkrh-search-promotion-message strong {
    color: var(--hkrh-search-results-text);
    font-size: 10px;
}

.hkrh-search-promotion-message small {
    margin-top: 3px;
    color: var(--hkrh-search-results-muted);
    font-size: 9px;
    line-height: 1.4;
}

.hkrh-search-card-footer {
    margin-top: 17px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--hkrh-search-results-line);
}

.hkrh-search-price {
    color: var(--hkrh-search-results-text);
    font-size: 18px;
    font-weight: 900;
}

.hkrh-search-price del {
    color: var(--hkrh-search-results-muted);
    font-size: 11px;
}

.hkrh-search-result-button,
.hkrh-search-empty-button {
    min-height: 42px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #03111f;
    background: var(--hkrh-search-results-accent);
    border: 1px solid var(--hkrh-search-results-accent);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition:
        color .18s ease,
        background .18s ease;
}

.hkrh-search-result-button:hover,
.hkrh-search-empty-button:hover {
    color: #ffffff;
    background: var(--hkrh-search-results-hero);
    border-color: var(--hkrh-search-results-hero);
}

.hkrh-search-empty {
    padding: 60px 28px;
    text-align: center;
    background: var(--hkrh-search-results-card);
    border: 1px solid var(--hkrh-search-results-line);
    border-radius: calc(var(--hkrh-search-results-radius) + 4px);
    box-shadow: 0 18px 50px rgba(3, 17, 31, .07);
}

.hkrh-search-empty-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: #03111f;
    background: var(--hkrh-search-results-accent);
    border-radius: 50%;
}

.hkrh-search-empty-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.hkrh-search-empty > span {
    color: #d9a22e;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hkrh-search-empty h2 {
    margin: 10px 0 11px;
    color: var(--hkrh-search-results-text);
    font: 900 clamp(30px, 5vw, 50px)/1 var(--hkrh-heading-font);
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.hkrh-search-empty > p {
    max-width: 560px;
    margin: 0 auto 22px;
    color: var(--hkrh-search-results-muted);
    font-size: 13px;
    line-height: 1.65;
}

.hkrh-search-quick-links {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hkrh-search-quick-links a {
    padding: 9px 12px;
    color: var(--hkrh-search-results-text);
    background: var(--hkrh-search-results-bg);
    border: 1px solid var(--hkrh-search-results-line);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
    text-decoration: none;
}

.hkrh-search-pagination {
    margin-top: 34px;
}

.hkrh-search-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.hkrh-search-pagination li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hkrh-search-pagination a,
.hkrh-search-pagination span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--hkrh-search-results-text);
    background: #ffffff;
    border: 1px solid var(--hkrh-search-results-line);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.hkrh-search-pagination .current {
    color: #03111f;
    background: var(--hkrh-search-results-accent);
    border-color: var(--hkrh-search-results-accent);
}

@media(max-width:980px) {
    .hkrh-search-grid {
        grid-template-columns:
            repeat(
                var(--hkrh-search-results-cols-tablet),
                minmax(0, 1fr)
            );
    }
}

@media(max-width:680px) {
    .hkrh-search-shell {
        width: min(calc(100% - 24px), 1240px);
    }

    .hkrh-search-hero {
        padding: 48px 0 52px;
    }

    .hkrh-search-page-form {
        grid-template-columns: 1fr;
    }

    .hkrh-search-page-form button {
        width: 100%;
    }

    .hkrh-search-content {
        padding: 38px 0 60px;
    }

    .hkrh-search-content-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hkrh-search-grid {
        grid-template-columns:
            repeat(
                var(--hkrh-search-results-cols-mobile),
                minmax(0, 1fr)
            );
    }

    .hkrh-search-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .hkrh-search-result-button {
        width: 100%;
    }

    .hkrh-search-empty {
        padding: 44px 18px;
    }
}


/* ==========================================================
   1.6.2 — Fermeture du panier depuis l’arrière-plan
   ========================================================== */

.hkrh-overlay {
    pointer-events: none;
    cursor: pointer;
    touch-action: manipulation;
}

.hkrh-overlay.is-visible {
    pointer-events: auto;
}

body.hkrh-drawer-open {
    overflow: hidden;
}


/* 1.7.0 — Affichage conditionnel intégré */
.hkrh-placement { box-sizing:border-box; width:100%; }
.hkrh-placement *, .hkrh-placement *::before, .hkrh-placement *::after { box-sizing:border-box; }
@media (min-width:1025px) { .hkrh-device--tablet, .hkrh-device--mobile { display:none!important; } }
@media (min-width:768px) and (max-width:1024px) { .hkrh-device--desktop, .hkrh-device--mobile { display:none!important; } }
@media (max-width:767px) { .hkrh-device--desktop, .hkrh-device--tablet { display:none!important; } }
