body:not(.home)::before {
    content: "";
    display: block;
    height: 110px;
}

@media (max-width: 1024px) {
    body:not(.home)::before {
        height: 90px;
    }
}

@media (max-width: 767px) {
    body:not(.home)::before {
        height: 150px;
    }
}

body.home::before {
    display: none;
}

.hp-smart-header-shell {
    --hp-smart-header-top: 0px;
    --hp-smart-header-max-width: 1500px;
    --hp-smart-header-side-gap: clamp(10px, 1.7vw, 24px);
    --hp-smart-header-peek-size: 10px;
    --hp-smart-header-search-results-bg: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(16, 16, 16, 0.98) 100%);
    --hp-smart-header-bg: var(--hp-header-shell-bg);
    --hp-smart-header-bg-sticky: var(--hp-header-shell-bg);
    --hp-smart-header-border: var(--hp-header-shell-border);
    --hp-smart-header-text: var(--hp-color-text-primary);
    --hp-smart-header-muted: var(--hp-color-text-soft);
    --hp-smart-header-shadow: var(--hp-header-shell-shadow);
    --hp-smart-header-radius: var(--hp-header-shell-radius);
    --hp-smart-header-transition: var(--hp-header-shell-transition);
    --hp-smart-header-icon-size: 50px;
    position: relative;
    z-index: 60;
}

.hp-smart-header {
    position: fixed;
    top: var(--hp-smart-header-top);
    left: 0;
    right: 0;
    z-index: 9991;
    padding: 12px var(--hp-smart-header-side-gap) 0;
    color: var(--hp-smart-header-text);
    pointer-events: none;
    will-change: transform;
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hp-smart-header.is-peeked {
    transform: translateY(calc(-100% + var(--hp-smart-header-peek-size)));
}

.hp-smart-header.is-peeked .hp-smart-header__desktop-row,
.hp-smart-header.is-peeked .hp-smart-header__mobile {
    pointer-events: none;
}

.hp-smart-header__desktop-row,
.hp-smart-header__mobile {
    width: min(var(--hp-smart-header-max-width), calc(100vw - (var(--hp-smart-header-side-gap) * 2)));
    margin: 0 auto;
    border: var(--hp-smart-header-border);
    background: var(--hp-smart-header-bg);
    box-shadow: var(--hp-smart-header-shadow);
    backdrop-filter: var(--hp-header-shell-blur);
    -webkit-backdrop-filter: var(--hp-header-shell-blur);
    font-family: var(--hp-font-family-base);
    pointer-events: auto;
    overflow: hidden;
    transition: var(--hp-smart-header-transition);
}

.hp-smart-header__desktop-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
    min-height: 74px;
    padding: 10px 18px;
    border-radius: var(--hp-smart-header-radius);
}

.hp-smart-header.is-condensed .hp-smart-header__desktop-row,
.hp-smart-header.is-condensed .hp-smart-header__mobile,
.hp-smart-header.is-sticky .hp-smart-header__desktop-row,
.hp-smart-header.is-sticky .hp-smart-header__mobile {
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--hp-smart-header-bg-sticky);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.hp-smart-header.is-condensed .hp-smart-header__desktop-row,
.hp-smart-header.is-sticky .hp-smart-header__desktop-row {
    min-height: 48px;
    padding: 3px 14px;
}

.hp-smart-header__desktop-side,
.hp-smart-header__mobile-tools,
.hp-smart-header__mobile-main,
.hp-smart-header__desktop-center {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hp-smart-header__desktop-side {
    width: 100%;
}

.hp-smart-header__desktop-side--start {
    justify-content: flex-start;
}

.hp-smart-header__desktop-side--end {
    justify-content: flex-end;
    justify-self: end;
}

.hp-smart-header__desktop-center {
    justify-content: center;
    justify-self: center;
}

.hp-smart-header__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-decoration: none;
    color: var(--hp-smart-header-text);
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hp-smart-header__logo-image {
    display: block;
    max-width: clamp(180px, 22vw, 300px);
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition:
        max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hp-smart-header__logo-link--text {
    font-family: Georgia, serif;
    font-size: clamp(24px, 2.8vw, 34px);
    letter-spacing: -0.045em;
}

.hp-smart-header__logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.hp-smart-header__logo-wordmark-light {
    font-weight: 400;
}

.hp-smart-header__logo-wordmark-bold {
    font-weight: 700;
}

.hp-smart-header.is-condensed .hp-smart-header__logo-image,
.hp-smart-header.is-sticky .hp-smart-header__logo-image {
    max-height: 34px;
    transform: scale(0.8);
}

.hp-smart-header__utility,
.hp-smart-header__utility:visited,
.hp-smart-header__utility:hover,
.hp-smart-header__utility:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-smart-header-text);
    text-decoration: none;
}

.hp-smart-header button.hp-smart-header__utility {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    line-height: 0;
}

.hp-smart-header button.hp-smart-header__utility--account {
    border-radius: var(--hp-header-utility-radius);
    overflow: hidden;
}

.hp-smart-header__utility--account,
.hp-smart-header__utility--account .hp-smart-header__icon-surface--avatar,
.hp-smart-header__utility--account .hp-smart-header__avatar-image {
    border-radius: var(--hp-header-utility-radius);
}

.hp-smart-header__icon-surface {
    width: var(--hp-smart-header-icon-size);
    height: var(--hp-smart-header-icon-size);
    border-radius: var(--hp-header-utility-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: var(--hp-header-utility-border);
    background: var(--hp-header-utility-bg);
    box-shadow: var(--hp-header-utility-shadow);
    backdrop-filter: var(--hp-header-utility-blur);
    -webkit-backdrop-filter: var(--hp-header-utility-blur);
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.hp-smart-header__icon-surface svg {
    width: 22px;
    height: 22px;
    display: block;
}

.hp-smart-header__utility:hover .hp-smart-header__icon-surface,
.hp-smart-header__utility:focus .hp-smart-header__icon-surface,
.hp-smart-header button:hover .hp-smart-header__icon-surface,
.hp-smart-header button:focus .hp-smart-header__icon-surface {
    background: color-mix(in srgb, var(--hp-header-utility-bg) 55%, rgba(255, 255, 255, 0.18));
    border-color: rgba(255, 255, 255, 0.08);
}

.hp-smart-header.is-condensed .hp-smart-header__icon-surface,
.hp-smart-header.is-sticky .hp-smart-header__icon-surface {
    transform: scale(0.55);
}

.hp-smart-header__icon-surface--brand,
.hp-smart-header__icon-surface--avatar {
    overflow: hidden;
}

.hp-smart-header__utility--account:hover .hp-smart-header__icon-surface--avatar,
.hp-smart-header__utility--account:focus .hp-smart-header__icon-surface--avatar,
.hp-smart-header button.hp-smart-header__utility--account:hover .hp-smart-header__icon-surface--avatar,
.hp-smart-header button.hp-smart-header__utility--account:focus .hp-smart-header__icon-surface--avatar {
    background: transparent;
}

.hp-smart-header__brand-image,
.hp-smart-header__brand-image picture,
.hp-smart-header__brand-image img {
    width: 100%;
    height: 100%;
}

.hp-smart-header__brand-image {
    display: block;
    object-fit: cover;
    padding: 0;
}

.hp-smart-header__brand-image img {
    display: block;
    object-fit: cover;
    border-radius: 11px;
}

.hp-smart-header__brand-fallback {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hp-smart-header__avatar-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: var(--hp-header-utility-bg);
    border-radius: 12px;
}

.hp-smart-header__utility--account .hp-smart-header__icon-surface--avatar picture,
.hp-smart-header__utility--account .hp-smart-header__icon-surface--avatar img,
.hp-smart-header__utility--account .hp-smart-header__icon-surface--avatar .hp-smart-header__avatar-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: var(--hp-header-utility-radius) !important;
    background: var(--hp-header-utility-bg) !important;
}

.hp-smart-header__avatar-fallback {
    display: inline-flex;
    color: var(--hp-smart-header-text);
}

.hp-smart-header__search {
    min-width: 0;
    display: flex;
    align-items: center;
    align-self: center;
}

.hp-smart-header__search--expanded {
    flex: 1 1 clamp(240px, 34vw, 420px);
    width: min(100%, 420px);
    max-width: 420px;
}

.hp-smart-header__search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.hp-smart-header__search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(246, 241, 232, 0.58);
}

.hp-smart-header__search-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.hp-smart-header__search-input {
    width: 100%;
    min-height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.82);
    color: var(--hp-smart-header-text);
    padding: 0 18px 0 50px;
    font-size: 15px;
    line-height: 1.2;
}

.hp-smart-header__search-input::placeholder {
    color: rgba(246, 241, 232, 0.48);
}

.hp-smart-header__search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(10, 10, 10, 0.88);
}

.hp-smart-header__search-popover {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(24, 24, 24, 0.92);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.hp-smart-header__search-popover[hidden] {
    display: none;
}

.hp-smart-header__widget,
.hp-smart-header__widget > :not(style):not(script) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hp-smart-header__widget style,
.hp-smart-header__widget script {
    display: none !important;
}

.hp-smart-header__widget--search,
.hp-smart-header__search--compact {
    position: relative;
}

.hp-smart-header__widget--cart,
.hp-smart-header__widget--cart > :not(style):not(script),
.hp-smart-header__widget--cart > :not(style):not(script) > :not(style):not(script) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-smart-header .hp-menu-trigger,
.hp-smart-header .hp-menu-trigger:visited,
.hp-smart-header .hp-menu-trigger:hover,
.hp-smart-header .hp-menu-trigger:focus {
    width: var(--hp-smart-header-icon-size) !important;
    height: var(--hp-smart-header-icon-size) !important;
    min-width: var(--hp-smart-header-icon-size) !important;
    min-height: var(--hp-smart-header-icon-size) !important;
    padding: 0 !important;
    border-radius: var(--hp-header-utility-radius) !important;
    border: var(--hp-header-utility-border) !important;
    background: var(--hp-header-utility-bg) !important;
    box-shadow: var(--hp-header-utility-shadow) !important;
    color: var(--hp-smart-header-text) !important;
    backdrop-filter: var(--hp-header-utility-blur) !important;
    -webkit-backdrop-filter: var(--hp-header-utility-blur) !important;
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hp-smart-header .hp-menu-trigger svg,
.hp-smart-header .hp-menu-trigger img {
    width: 22px !important;
    height: 22px !important;
}

.hp-smart-header.is-condensed .hp-menu-trigger,
.hp-smart-header.is-sticky .hp-menu-trigger {
    transform: scale(0.55);
}

.hp-smart-header .hp-affiliate-share-btn {
    margin: 0 !important;
    align-self: center;
    min-height: 50px !important;
    height: 50px !important;
    padding: 0 18px !important;
    border-radius: var(--hp-header-utility-radius) !important;
    border: var(--hp-header-utility-border) !important;
    background: var(--hp-header-utility-bg) !important;
    box-shadow: var(--hp-header-utility-shadow) !important;
    color: var(--hp-smart-header-text) !important;
    backdrop-filter: var(--hp-header-utility-blur) !important;
    -webkit-backdrop-filter: var(--hp-header-utility-blur) !important;
    white-space: nowrap;
    font-family: var(--hp-font-family-base) !important;
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hp-smart-header .hp-affiliate-share-btn span {
    white-space: nowrap;
}

.hp-smart-header.is-condensed .hp-affiliate-share-btn,
.hp-smart-header.is-sticky .hp-affiliate-share-btn {
    transform: scale(0.72);
}

.hp-smart-header [data-hp-share-trigger].is-copied .hp-smart-header__icon-surface {
    background: rgba(225, 197, 126, 0.18);
    border-color: rgba(225, 197, 126, 0.48);
}

.hp-smart-header-spacer {
    height: 0;
    pointer-events: none;
}

.hp-smart-header__mobile {
    display: none;
}

.hp-smart-header__mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.hp-smart-header__mobile-row--top,
.hp-smart-header__mobile-row--express {
    padding: 12px 14px;
}

.hp-smart-header__mobile-row--toolbar {
    padding: 0 12px 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 10px;
}

.hp-smart-header__mobile-row--toolbar > * {
    flex: 1 1 0;
    min-width: 0;
}

.hp-smart-header__mobile-row--toolbar .hp-smart-header__widget,
.hp-smart-header__mobile-row--toolbar .hp-smart-header__utility {
    width: 100%;
    justify-content: center;
}

.hp-smart-header__mobile-main {
    flex: 1 1 auto;
}

.hp-smart-header__mobile-tools {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.hp-smart-header[data-context="express_shop"] .hp-smart-header__desktop-row--express {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.hp-smart-header[data-context="express_shop"] .hp-smart-header__desktop-row--express .hp-smart-header__desktop-side--start {
    display: none;
}

.hp-smart-header[data-context="express_shop"] .hp-smart-header__desktop-row--express .hp-smart-header__desktop-center {
    grid-column: 1;
    justify-self: start;
}

.hp-smart-header[data-context="express_shop"] .hp-smart-header__desktop-row--express .hp-smart-header__desktop-side--end {
    grid-column: 3;
    justify-self: end;
}

.hp-smart-header[data-context="express_shop"] .hp-smart-header__mobile-row--express .hp-smart-header__mobile-main {
    justify-content: flex-start;
}

.hp-smart-header[data-context="express_shop"] .hp-smart-header__mobile-row--express .hp-smart-header__mobile-tools {
    gap: 10px;
}

.hp-smart-header .hp-sidecart-trigger {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: var(--hp-header-utility-radius) !important;
    border: var(--hp-header-utility-border) !important;
    background: var(--hp-header-utility-bg) !important;
    box-shadow: var(--hp-header-utility-shadow) !important;
    backdrop-filter: var(--hp-header-utility-blur) !important;
    -webkit-backdrop-filter: var(--hp-header-utility-blur) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hp-smart-header .hp-sidecart-trigger svg {
    width: 22px !important;
    height: 22px !important;
}

.hp-smart-header .hp-sidecart-trigger__surface {
    position: relative;
}

.hp-smart-header.is-condensed .hp-sidecart-trigger,
.hp-smart-header.is-sticky .hp-sidecart-trigger {
    transform: scale(0.55);
}

.hp-smart-header .hp-sidecart-trigger__count {
    position: absolute !important;
    top: 7px !important;
    right: 7px !important;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    border-radius: 999px;
    background: rgba(241, 209, 138, 0.18);
    border: 1px solid rgba(241, 209, 138, 0.28);
    color: rgba(246, 241, 232, 0.78) !important;
    font-size: 10px;
    line-height: 13px;
    font-weight: 500 !important;
    text-shadow: none !important;
}

.hp-smart-header .dgwt-wcas-search-wrapp {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(58, 58, 58, 0.88) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 30px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hp-smart-header .dgwt-wcas-search-form,
.hp-smart-header .dgwt-wcas-sf-wrapp {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

.hp-smart-header .dgwt-wcas-sf-wrapp {
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(58, 58, 58, 0.88) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
}

.hp-smart-header .dgwt-wcas-search-input {
    min-height: 50px !important;
    height: 50px !important;
    padding-left: 54px !important;
    padding-right: 48px !important;
    color: var(--hp-smart-header-text) !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 15px !important;
}

.hp-smart-header .dgwt-wcas-search-input::placeholder {
    color: rgba(246, 241, 232, 0.48) !important;
}

.hp-smart-header .dgwt-wcas-search-submit,
.hp-smart-header .dgwt-wcas-search-icon,
.hp-smart-header .dgwt-wcas-preloader,
.hp-smart-header .dgwt-wcas-voice-search {
    color: rgba(246, 241, 232, 0.72) !important;
}

.hp-smart-header .dgwt-wcas-close,
.hp-smart-header .dgwt-wcas-close svg,
.hp-smart-header .dgwt-wcas-close path {
    color: rgba(246, 241, 232, 0.72) !important;
    fill: currentColor !important;
    stroke: none !important;
}

.hp-smart-header .dgwt-wcas-search-submit {
    position: absolute !important;
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    right: auto !important;
    width: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hp-smart-header .dgwt-wcas-search-submit svg,
.hp-smart-header .dgwt-wcas-search-icon svg {
    position: static !important;
    inset: auto !important;
    margin: 0 !important;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
}

.hp-smart-header.is-condensed .hp-smart-header__search--expanded .dgwt-wcas-search-wrapp,
.hp-smart-header.is-condensed .hp-smart-header__search--expanded .hp-smart-header__search-form,
.hp-smart-header.is-sticky .hp-smart-header__search--expanded .dgwt-wcas-search-wrapp,
.hp-smart-header.is-sticky .hp-smart-header__search--expanded .hp-smart-header__search-form {
    transform: none !important;
}

.hp-smart-header.is-condensed .hp-smart-header__search--expanded .dgwt-wcas-sf-wrapp,
.hp-smart-header.is-sticky .hp-smart-header__search--expanded .dgwt-wcas-sf-wrapp,
.hp-smart-header.is-condensed .hp-smart-header__search--expanded .dgwt-wcas-search-input,
.hp-smart-header.is-sticky .hp-smart-header__search--expanded .dgwt-wcas-search-input,
.hp-smart-header.is-condensed .hp-smart-header__search--expanded .dgwt-wcas-search-submit,
.hp-smart-header.is-sticky .hp-smart-header__search--expanded .dgwt-wcas-search-submit {
    min-height: 50px !important;
    height: 50px !important;
}

.hp-smart-header .dgwt-wcas-suggestions-wrapp,
.hp-smart-header .dgwt-wcas-suggestions-wrapp * {
    box-sizing: border-box;
}

body .dgwt-wcas-suggestions-wrapp {
    margin-top: 12px !important;
    border-radius: 16px !important;
    border: var(--hp-zen-border, 1px solid rgba(255, 255, 255, 0.08)) !important;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(16, 16, 16, 0.98) 100%) !important;
    box-shadow: var(--hp-zen-shadow, 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06)) !important;
    backdrop-filter: var(--hp-zen-blur, blur(16px)) !important;
    -webkit-backdrop-filter: var(--hp-zen-blur, blur(16px)) !important;
    overflow: hidden !important;
}

body .dgwt-wcas-details-wrapp {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(16, 16, 16, 0.98) 100%) !important;
}

body .dgwt-wcas-suggestion,
body .dgwt-wcas-suggestion-product,
body .dgwt-wcas-suggestion-cat {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

body .dgwt-wcas-suggestion:hover,
body .dgwt-wcas-suggestion-product:hover,
body .dgwt-wcas-suggestion-cat:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

body .dgwt-wcas-suggestions-wrapp a,
body .dgwt-wcas-suggestions-wrapp strong,
body .dgwt-wcas-suggestions-wrapp span,
body .dgwt-wcas-suggestions-wrapp div {
    color: #f6f1e8 !important;
}

@media (min-width: 768px) {
    .hp-smart-header-shell--home-hidden-logo .hp-smart-header.is-home-top .hp-smart-header__desktop-row {
        grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr);
    }

    .hp-smart-header-shell--home-hidden-logo .hp-smart-header.is-home-top .hp-smart-header__desktop-center {
        overflow: hidden;
        min-width: 0;
    }

    .hp-smart-header-shell--home-hidden-logo .hp-smart-header.is-home-top .hp-smart-header__logo-link {
        opacity: 0;
        transform: scale(0.82);
        width: 0;
        pointer-events: none;
    }

    body.dgwt-wcas-focused .hp-smart-header__desktop-center,
    body.dgwt-wcas-focused .hp-smart-header__desktop-side--end {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.dgwt-wcas-focused .hp-smart-header__logo-link {
        opacity: 1 !important;
        width: auto !important;
        pointer-events: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hp-smart-header__search--expanded {
        flex: 1 1 clamp(220px, 34vw, 350px);
        width: min(100%, 350px);
        max-width: 350px;
    }

    .hp-smart-header .hp-affiliate-share-btn {
        min-width: 110px !important;
        padding-inline: 16px !important;
    }
}

@media (max-width: 1200px) {
    .hp-smart-header__desktop-row {
        column-gap: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 1024px) {
    .hp-smart-header-shell {
        --hp-smart-header-peek-size: 16px;
    }

    .hp-smart-header__desktop-row {
        min-height: 70px;
    }

    .hp-smart-header.is-condensed .hp-smart-header__desktop-row,
    .hp-smart-header.is-sticky .hp-smart-header__desktop-row {
        min-height: 46px;
    }

    .hp-smart-header .hp-affiliate-share-btn {
        min-width: 96px !important;
    }
}

@media (min-width: 768px) {
    .hp-smart-header__search--compact {
        display: none;
    }
}

@media (max-width: 767px) {
    .hp-smart-header-shell {
        --hp-smart-header-peek-size: 14px;
    }

    .hp-smart-header {
        padding: 8px 10px 0;
        transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hp-smart-header__desktop-row {
        display: none;
    }

    .hp-smart-header__mobile {
        display: block;
        border-radius: 32px;
    }

    .hp-smart-header.is-condensed .hp-smart-header__mobile,
    .hp-smart-header.is-sticky .hp-smart-header__mobile {
        transform: translateY(-1px) scale(0.992);
    }

    .hp-smart-header__mobile-main .hp-smart-header__logo-image {
        max-height: 38px;
        max-width: min(200px, 62vw);
    }

    .hp-smart-header__mobile-main .hp-smart-header__logo-link--text {
        font-size: clamp(20px, 8vw, 30px);
    }

    .hp-smart-header__mobile-tools .hp-affiliate-share-btn {
        min-width: 118px !important;
        padding-inline: 18px !important;
    }

    .hp-smart-header .hp-affiliate-share-btn {
        transform: none !important;
    }

    .hp-smart-header__widget--search,
    .hp-smart-header__search--compact,
    .hp-smart-header__widget--search > :not(style):not(script) {
        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
        height: 50px !important;
        min-height: 50px !important;
        flex: 0 0 50px !important;
    }

    .hp-smart-header .js-dgwt-wcas-om-hook,
    .hp-smart-header .js-dgwt-wcas-om-hook > * {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .hp-smart-header .js-dgwt-wcas-om-hook,
    .hp-smart-header .js-dgwt-wcas-om-hook > *:not(.dgwt-wcas-search-form):not(.dgwt-wcas-sf-wrapp) {
        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
        height: 50px !important;
        min-height: 50px !important;
        flex: 0 0 50px !important;
    }

    .hp-smart-header .js-dgwt-wcas-om-hook .dgwt-wcas-search-icon,
    .hp-smart-header .js-dgwt-wcas-om-hook .dgwt-wcas-search-icon-handler,
    .hp-smart-header .js-dgwt-wcas-om-hook a {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        padding: 0 !important;
        border-radius: var(--hp-header-utility-radius) !important;
        border: var(--hp-header-utility-border) !important;
        background: var(--hp-header-utility-bg) !important;
        box-shadow: var(--hp-header-utility-shadow) !important;
        backdrop-filter: var(--hp-header-utility-blur) !important;
        -webkit-backdrop-filter: var(--hp-header-utility-blur) !important;
        color: var(--hp-smart-header-text) !important;
    }

    .hp-smart-header .js-dgwt-wcas-om-hook .dgwt-wcas-search-icon svg,
    .hp-smart-header .js-dgwt-wcas-om-hook a svg {
        width: 22px !important;
        height: 22px !important;
    }

    .hp-smart-header .js-dgwt-wcas-om-hook .dgwt-wcas-search-icon-arrow,
    .hp-smart-header .js-dgwt-wcas-om-hook .dgwt-wcas-search-form,
    .hp-smart-header .js-dgwt-wcas-om-hook .dgwt-wcas-sf-wrapp {
        display: none !important;
    }

    .hp-smart-header__mobile-row--toolbar {
        justify-content: space-evenly !important;
    }

    .hp-smart-header__mobile-row--toolbar > * {
        width: var(--hp-smart-header-icon-size) !important;
        min-width: var(--hp-smart-header-icon-size) !important;
        max-width: var(--hp-smart-header-icon-size) !important;
        height: var(--hp-smart-header-icon-size) !important;
        min-height: var(--hp-smart-header-icon-size) !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        flex-basis: var(--hp-smart-header-icon-size) !important;
    }

    .hp-smart-header[data-mobile-flush="1"] {
        padding-left: 0;
        padding-right: 0;
    }

    .hp-smart-header[data-mobile-flush="1"] .hp-smart-header__mobile {
        width: 100vw;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
}

body .dgwt-wcas-overlay-mobile-on {
    background: var(--hp-zen-overlay, rgba(10, 10, 10, 0.6)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body .js-dgwt-wcas-overlay-mobile.dgwt-wcas-overlay-mobile {
    padding: calc(env(safe-area-inset-top, 0px) + 16px) 12px calc(env(safe-area-inset-bottom, 0px) + 18px) !important;
    background: transparent !important;
}

body .dgwt-wcas-om-bar {
    max-width: 820px !important;
    margin: 0 auto !important;
    padding: 10px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background:
        linear-gradient(180deg, rgba(50, 50, 50, 0.7) 0%, rgba(28, 28, 28, 0.76) 100%) !important;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

body .dgwt-wcas-om-return {
    width: 50px !important;
    min-width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #f6f1e8 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body .dgwt-wcas-om-return svg,
body .dgwt-wcas-om-return path {
    color: #f6f1e8 !important;
    fill: currentColor !important;
    stroke: none !important;
}

body .dgwt-wcas-search-wrapp-mobile {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    overflow: hidden !important;
}

body .dgwt-wcas-search-wrapp-mobile form,
body .dgwt-wcas-search-wrapp-mobile .dgwt-wcas-search-form {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    overflow: hidden !important;
}

body .dgwt-wcas-search-wrapp-mobile .dgwt-wcas-sf-wrapp {
    min-height: 50px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(10, 10, 10, 0.92) !important;
    overflow: hidden !important;
}

body .dgwt-wcas-search-wrapp-mobile .dgwt-wcas-search-input {
    min-height: 50px !important;
    height: 50px !important;
    padding-inline: 18px 48px !important;
    background: transparent !important;
    border-radius: 999px !important;
}

body .dgwt-wcas-search-wrapp-mobile .dgwt-wcas-search-submit {
    width: 44px !important;
    min-width: 44px !important;
}

body .dgwt-wcas-search-wrapp-mobile .dgwt-wcas-search-submit svg {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 767px) {
    body .dgwt-wcas-om-bar {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: calc(100vw - 24px) !important;
        max-width: none !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible !important;
    }

    body .dgwt-wcas-om-bar > :not(.dgwt-wcas-om-return):not(.dgwt-wcas-search-wrapp-mobile):not(.dgwt-wcas-suggestions-wrapp) {
        display: none !important;
    }

    body.dgwt-wcas-open .hp-smart-header,
    body.dgwt-wcas-focused .hp-smart-header {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.dgwt-wcas-open .dgwt-wcas-suggestions-wrapp,
    body.dgwt-wcas-focused .dgwt-wcas-suggestions-wrapp {
        top: 78px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        height: min(540px, calc(100dvh - 110px)) !important;
        max-height: calc(100dvh - 110px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

body .hp-menu-portal {
    position: fixed;
    inset: 0;
    z-index: 9996;
}

body .hp-menu-backdrop {
    position: fixed;
    inset: 0;
    background: var(--hp-menu-backdrop-bg) !important;
    backdrop-filter: var(--hp-menu-backdrop-blur) !important;
    -webkit-backdrop-filter: var(--hp-menu-backdrop-blur) !important;
}

body .hp-menu-panel {
    width: min(520px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    left: 14px !important;
    margin: 0 !important;
    padding: 18px 18px 14px !important;
    border-radius: var(--hp-menu-panel-radius) !important;
    border: var(--hp-menu-panel-border) !important;
    background: var(--hp-menu-panel-bg) !important;
    box-shadow: var(--hp-menu-panel-shadow) !important;
    backdrop-filter: var(--hp-menu-panel-blur) !important;
    -webkit-backdrop-filter: var(--hp-menu-panel-blur) !important;
    color: var(--hp-color-text-primary) !important;
    font-family: var(--hp-font-family-base) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    color-scheme: dark !important;
}

body .hp-menu-panel * {
    box-sizing: border-box !important;
}

body .hp-menu-panel h2,
body .hp-menu-panel .font-display {
    color: var(--hp-color-text-primary) !important;
}

body .hp-menu-close-btn {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: var(--hp-menu-close-radius) !important;
    border: var(--hp-menu-close-border) !important;
    background: var(--hp-menu-close-bg) !important;
    box-shadow: var(--hp-menu-close-shadow) !important;
    backdrop-filter: var(--hp-menu-close-blur) !important;
    -webkit-backdrop-filter: var(--hp-menu-close-blur) !important;
    color: var(--hp-color-text-primary) !important;
}

body .hp-menu-close-btn svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    flex-shrink: 0 !important;
}

body .hp-menu-glass-item {
    border-radius: var(--hp-menu-card-radius) !important;
    border: var(--hp-menu-card-border) !important;
    border-color: var(--hp-menu-card-border-color) !important;
    background: var(--hp-menu-card-bg) !important;
    box-shadow: var(--hp-menu-card-shadow) !important;
    backdrop-filter: var(--hp-menu-card-blur) !important;
    -webkit-backdrop-filter: var(--hp-menu-card-blur) !important;
    transition: var(--hp-menu-card-transition) !important;
}

body .hp-menu-glass-item:hover {
    background: var(--hp-menu-card-hover-bg) !important;
    border-color: var(--hp-menu-card-hover-border-color) !important;
    transform: translateY(-1px);
}

body .hp-menu-label {
    color: color-mix(in srgb, var(--hp-color-text-primary) 92%, transparent) !important;
    font-family: var(--hp-font-family-base) !important;
    font-size: 1.18rem !important;
    font-weight: 500 !important;
}

body .hp-menu-chevron-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: block !important;
    flex-shrink: 0 !important;
}

body .hp-menu-child-link img {
    object-fit: contain !important;
    object-position: center right !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body .hp-menu-submenu-shell {
    position: relative;
    overflow: hidden !important;
    min-width: 0 !important;
}

body .hp-menu-child-row,
body .hp-menu-child-link,
body .hp-menu-panel ul,
body .hp-menu-panel li {
    min-width: 0 !important;
}

body .hp-menu-child-link:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04)) !important;
    border-color: rgba(255,255,255,0.09) !important;
    transform: translateX(2px);
}

body .hp-menu-child-link:hover .hp-menu-child-accent {
    width: 34px !important;
    background: rgba(241, 209, 138, 0.7) !important;
}

body .hp-category-label {
    display: block;
    margin: 18px 0 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: color-mix(in srgb, var(--hp-color-text-primary) 52%, transparent) !important;
}

body .hp-menu-panel a {
    text-decoration: none !important;
}

body .hp-menu-panel .flex-1.overflow-y-auto {
    padding-right: 4px;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) rgba(255, 255, 255, 0.04);
    scrollbar-gutter: stable;
}

body .hp-menu-panel .flex-1.overflow-y-auto::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body .hp-menu-panel .flex-1.overflow-y-auto::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

body .hp-menu-panel .flex-1.overflow-y-auto::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

body .hp-menu-panel .flex-1.overflow-y-auto::-webkit-scrollbar-corner {
    background: rgba(255, 255, 255, 0.04);
}

body .hp-menu-panel > .h-full > p:last-child,
body .hp-menu-panel .h-full > p:last-child {
    margin-top: 14px !important;
    color: var(--hp-menu-footer-text) !important;
    font-size: 13px !important;
    text-align: center;
}

@media (max-width: 767px) {
    body .hp-menu-panel {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        left: 10px !important;
        top: 10px !important;
        bottom: 10px !important;
        margin: 0 !important;
        border-radius: 24px !important;
        padding: 16px 14px 12px !important;
    }
}

.hp-smart-header__desktop-row,
.hp-smart-header__mobile,
.hp-smart-header__icon-surface,
.hp-smart-header__search-popover,
.hp-smart-header .hp-menu-trigger,
.hp-smart-header .hp-affiliate-share-btn,
.hp-smart-header .hp-sidecart-trigger,
.hp-smart-header .dgwt-wcas-search-wrapp,
.hp-smart-header .dgwt-wcas-sf-wrapp {
    border-color: transparent;
}

.hp-smart-header__desktop-row,
.hp-smart-header__mobile {
    border: var(--hp-header-shell-border) !important;
    background: var(--hp-header-shell-bg) !important;
    box-shadow: var(--hp-header-shell-shadow) !important;
    backdrop-filter: var(--hp-header-shell-blur) !important;
    -webkit-backdrop-filter: var(--hp-header-shell-blur) !important;
}

.hp-smart-header__search-popover {
    border: var(--hp-zen-border, 1px solid rgba(255, 255, 255, 0.08)) !important;
    background: var(--hp-zen-bg, rgba(255, 255, 255, 0.05)) !important;
    box-shadow: var(--hp-zen-shadow, 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06)) !important;
    backdrop-filter: var(--hp-zen-blur, blur(16px)) !important;
    -webkit-backdrop-filter: var(--hp-zen-blur, blur(16px)) !important;
}

body .dgwt-wcas-suggestions-wrapp,
body .dgwt-wcas-details-wrapp {
    border: var(--hp-zen-border, 1px solid rgba(255, 255, 255, 0.08)) !important;
    background: var(--hp-smart-header-search-results-bg) !important;
    box-shadow: var(--hp-zen-shadow, 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06)) !important;
    backdrop-filter: blur(24px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.2) !important;
}

.hp-smart-header__icon-surface,
.hp-smart-header .hp-menu-trigger,
.hp-smart-header .hp-affiliate-share-btn,
.hp-smart-header .hp-sidecart-trigger,
.hp-smart-header .dgwt-wcas-search-wrapp,
.hp-smart-header .dgwt-wcas-sf-wrapp {
    border: var(--hp-header-utility-border) !important;
}

.hp-sidecart-shell {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    visibility: hidden;
    pointer-events: none;
    font-family: var(--hp-font-family-base);
    color: var(--hp-sidecart-text);
}

.hp-smart-header__widget--cart > .hp-sidecart-shell {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.hp-sidecart-shell.is-visible,
.hp-sidecart-shell.is-open,
.hp-sidecart-shell.is-closing {
    visibility: visible;
    pointer-events: auto;
}

.hp-sidecart-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: default;
    background: var(--hp-sidecart-overlay-bg) !important;
    opacity: 0;
    backdrop-filter: var(--hp-sidecart-overlay-blur) !important;
    -webkit-backdrop-filter: var(--hp-sidecart-overlay-blur) !important;
    transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-smart-header__widget--cart > .hp-sidecart-shell > .hp-sidecart-backdrop {
    display: block;
    align-items: initial;
    justify-content: initial;
}

.hp-sidecart-shell.is-open .hp-sidecart-backdrop {
    opacity: 1;
}

.hp-sidecart {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(440px, calc(100vw - 32px));
    max-height: calc(100dvh - 36px);
    margin: 18px max(18px, var(--hp-sidecart-right-offset, 18px)) 18px 0;
    border-radius: var(--hp-sidecart-shell-radius);
    border: var(--hp-sidecart-shell-border);
    background: var(--hp-sidecart-shell-bg);
    box-shadow: var(--hp-sidecart-shell-shadow);
    backdrop-filter: var(--hp-sidecart-shell-blur);
    -webkit-backdrop-filter: var(--hp-sidecart-shell-blur);
    overflow: hidden;
    opacity: 0;
    transform: translate3d(28px, 0, 0) scale(0.985);
    -webkit-transform: translate3d(28px, 0, 0) scale(0.985);
    will-change: transform, opacity;
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-smart-header__widget--cart > .hp-sidecart-shell > .hp-sidecart {
    align-items: stretch;
    justify-content: flex-start;
}

.hp-sidecart-shell.is-open .hp-sidecart {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transform: translate3d(0, 0, 0) scale(1);
}

.hp-sidecart-shell.is-dragging .hp-sidecart,
.hp-sidecart-shell.is-dragging .hp-sidecart-backdrop {
    transition: none !important;
}

.hp-sidecart,
.hp-sidecart * {
    box-sizing: border-box;
}

.hp-sidecart-handle {
    display: none;
}

.hp-sidecart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 24px 20px;
}

.hp-sidecart__heading {
    min-width: 0;
}

.hp-sidecart__header-actions {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
}

.hp-sidecart__title-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hp-sidecart__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(241, 209, 138, 0.2);
    background: rgba(241, 209, 138, 0.14);
    color: #f6cf78;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hp-sidecart__title-icon svg {
    width: 25px;
    height: 25px;
}

.hp-sidecart__title {
    margin: 0;
    color: var(--hp-sidecart-text);
    font-family: var(--hp-font-family-base);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
}

.hp-sidecart__subtitle {
    margin: 7px 0 0 58px;
    color: #f1d18a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hp-sidecart__close {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: var(--hp-sidecart-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0;
    line-height: 1;
    text-align: center;
    text-indent: 0;
    cursor: pointer;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.hp-sidecart__close span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(246, 241, 232, 0.78);
    -webkit-text-fill-color: rgba(246, 241, 232, 0.78);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    transform: none;
    transform-origin: center;
    pointer-events: none;
}

.hp-sidecart__close:hover,
.hp-sidecart__close:focus {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.hp-sidecart__notice {
    margin: 0 24px 14px;
    padding: 11px 13px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: var(--hp-sidecart-text);
    font-size: 13px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hp-sidecart__notice[data-type="error"] {
    border-color: rgba(255, 160, 130, 0.24);
    background: rgba(140, 48, 28, 0.24);
}

.hp-sidecart__body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0 18px 18px;
    overscroll-behavior: contain;
}

.hp-sidecart__empty {
    border-radius: 22px;
    border: var(--hp-sidecart-row-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--hp-sidecart-muted);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hp-sidecart__loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(241, 209, 138, 0.18);
    background: rgba(34, 34, 34, 0.72);
    color: #f1d18a;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
        opacity 0.18s ease,
        visibility 0.18s ease;
}

.hp-sidecart-shell.is-loading .hp-sidecart__loading {
    opacity: 1;
    visibility: visible;
}

.hp-sidecart__loading span[aria-hidden="true"] {
    position: relative;
    width: 13px;
    height: 18px;
    border: 2px solid currentColor;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-radius: 7px;
    animation: hp-sidecart-hourglass 1.05s ease-in-out infinite;
}

.hp-sidecart__loading span[aria-hidden="true"]::before,
.hp-sidecart__loading span[aria-hidden="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
    border-radius: 999px;
    background: currentColor;
}

.hp-sidecart__loading span[aria-hidden="true"]::before {
    top: 3px;
}

.hp-sidecart__loading span[aria-hidden="true"]::after {
    bottom: 3px;
    opacity: 0.55;
}

@keyframes hp-sidecart-hourglass {
    0%,
    35% {
        transform: rotate(0deg);
    }

    70%,
    100% {
        transform: rotate(180deg);
    }
}

.hp-sidecart__empty {
    display: grid;
    gap: 9px;
    justify-items: center;
    padding: 42px 22px;
    text-align: center;
}

.hp-sidecart__empty strong {
    color: var(--hp-sidecart-text);
    font-size: 17px;
}

.hp-sidecart__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 4px;
    border-radius: 18px;
    border: 1px solid rgba(241, 209, 138, 0.16);
    background: rgba(241, 209, 138, 0.12);
    color: #f1d18a;
}

.hp-sidecart__empty-icon svg {
    width: 25px;
    height: 25px;
}

.hp-sidecart__items {
    display: grid;
    gap: 12px;
    padding-bottom: 18px;
}

.hp-sidecart-item {
    position: relative;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 15px;
    padding: 12px;
    border-radius: 22px;
    border: var(--hp-sidecart-row-border);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.hp-sidecart-item:hover {
    background: var(--hp-sidecart-row-hover-bg);
    transform: translateY(-1px);
}

.hp-sidecart-item__image-wrap {
    position: relative;
    width: 86px;
    height: 86px;
}

.hp-sidecart-item__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.hp-sidecart-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-sidecart-item__main {
    min-width: 0;
    padding-right: 42px;
}

.hp-sidecart-item__name {
    display: block;
    margin: 2px 0 9px;
    color: var(--hp-sidecart-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.hp-sidecart-item__attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-bottom: 9px;
    color: var(--hp-sidecart-muted);
    font-size: 11px;
}

.hp-sidecart-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hp-sidecart-item__meta strong {
    color: var(--hp-sidecart-text);
    font-size: 15px;
    white-space: nowrap;
}

.hp-sidecart-item__qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 44px;
    padding: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--hp-sidecart-text);
    overflow: hidden;
}

.hp-sidecart-item__qty button,
.hp-sidecart-item__remove {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.06);
    color: var(--hp-sidecart-text);
    font: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1 !important;
    text-align: center;
    text-indent: 0;
    cursor: pointer;
    touch-action: manipulation;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hp-sidecart-item__qty button {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 16px;
    font-size: 0;
    font-weight: 700;
    line-height: 1 !important;
}

.hp-sidecart-item__qty span {
    min-width: 42px;
    color: var(--hp-sidecart-text);
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
}

.hp-sidecart-item__qty button > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    color: rgba(246, 241, 232, 0.76);
    -webkit-text-fill-color: rgba(246, 241, 232, 0.76);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    transform: none;
    transform-origin: center;
    pointer-events: none;
}

.hp-sidecart-item__qty button[data-hp-sidecart-qty="-1"] > span {
    transform: none;
}

.hp-sidecart-item__remove {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    left: auto;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border-radius: 999px;
    background: rgba(30, 30, 30, 0.92);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 0;
    line-height: 1 !important;
    touch-action: manipulation;
}

.hp-sidecart-item__remove > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(246, 241, 232, 0.76);
    -webkit-text-fill-color: rgba(246, 241, 232, 0.76);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    transform: none;
    transform-origin: center;
    pointer-events: none;
}

.hp-sidecart__footer {
    flex: 0 0 auto;
    display: grid;
    gap: 12px;
    padding: 16px 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.hp-sidecart__coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.hp-sidecart__coupon input,
.hp-sidecart__coupon button,
.hp-sidecart__checkout,
.hp-sidecart__view-cart {
    height: 46px;
    border-radius: 16px;
    font-family: var(--hp-font-family-base);
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hp-sidecart__coupon input {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--hp-sidecart-text);
    padding: 0 14px;
}

.hp-sidecart__coupon input::placeholder {
    color: rgba(246, 241, 232, 0.48);
}

.hp-sidecart__coupon button {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.07);
    color: var(--hp-sidecart-text);
    padding: 0 15px;
    cursor: pointer;
}

.hp-sidecart__summary {
    display: grid;
    gap: 7px;
}

.hp-sidecart__coupon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 2px;
}

.hp-sidecart__coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    max-width: 100%;
    padding: 4px 5px 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(241, 209, 138, 0.18);
    background: rgba(241, 209, 138, 0.11);
    color: #f1d18a;
    font-size: 12px;
    font-weight: 600;
}

.hp-sidecart__coupon-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hp-sidecart__coupon-chip button {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    padding: 0 0 1px !important;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f1d18a;
    font: inherit;
    line-height: 1 !important;
    cursor: pointer;
}

.hp-sidecart__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--hp-sidecart-muted);
    font-size: 13px;
}

.hp-sidecart__summary-row strong {
    color: var(--hp-sidecart-text);
    font-size: 13px;
}

.hp-sidecart__summary-row.is-total {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--hp-sidecart-text);
    font-size: 15px;
}

.hp-sidecart__summary-row.is-total strong {
    color: #f1d18a;
    font-size: 17px;
}

.hp-sidecart__checkout,
.hp-sidecart__view-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hp-sidecart__checkout {
    gap: 8px;
    min-height: 58px;
    border: 1px solid rgba(255, 219, 138, 0.52) !important;
    background: linear-gradient(180deg, #ffd36a 0%, #f6a627 52%, #c86e0f 100%) !important;
    color: #1d1d1b !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), 0 0 34px rgba(246, 166, 39, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
    font-size: 18px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.hp-sidecart__checkout:hover,
.hp-sidecart__checkout:focus {
    transform: translateY(-1px);
    filter: saturate(1.08);
}

.hp-sidecart__checkout-arrow {
    display: inline-block;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.hp-sidecart__checkout:hover .hp-sidecart__checkout-arrow,
.hp-sidecart__checkout:focus .hp-sidecart__checkout-arrow {
    transform: translateX(4px);
}

.hp-sidecart__checkout.is-disabled {
    opacity: 0.48;
    pointer-events: none;
}

.hp-sidecart__checkout.is-confirming {
    filter: saturate(0.96);
    cursor: progress;
}

.hp-sidecart__view-cart {
    height: auto;
    min-height: 22px;
    color: var(--hp-sidecart-muted);
    font-size: 13px;
}

@media (max-width: 767px) {
    .hp-sidecart-shell {
        justify-content: center;
        align-items: flex-end;
    }

    .hp-smart-header__widget--cart > .hp-sidecart-shell {
        align-items: flex-end;
        justify-content: center;
    }

    .hp-sidecart {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        max-height: calc(100dvh - max(8px, env(safe-area-inset-top)));
        margin: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 0;
        border-radius: 30px 30px 0 0;
        opacity: 1;
        transform: translate3d(0, 110%, 0);
        -webkit-transform: translate3d(0, 110%, 0);
        transition:
            transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hp-sidecart-shell.is-open .hp-sidecart {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    .hp-sidecart-handle {
        appearance: none;
        -webkit-appearance: none;
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 30px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: grab;
    }

    .hp-sidecart-handle span {
        width: 46px;
        height: 5px;
        border-radius: 999px;
        background: rgba(246, 241, 232, 0.32);
    }

    .hp-sidecart__header {
        gap: 12px;
        padding: 8px 18px 18px;
    }

    .hp-sidecart__title-icon {
        width: 48px;
        height: 48px;
    }

    .hp-sidecart__title {
        font-size: 27px;
    }

    .hp-sidecart__subtitle {
        margin-left: 60px;
        font-size: 16px;
    }

    .hp-sidecart__close {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .hp-sidecart__body {
        padding: 0 12px 24px;
    }

    .hp-sidecart__items {
        gap: 13px;
        padding-bottom: 28px;
    }

    .hp-sidecart__footer {
        padding: 15px 12px max(18px, env(safe-area-inset-bottom));
    }

    .hp-sidecart-item {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
        padding: 13px;
        border-radius: 20px;
    }

    .hp-sidecart-item__main {
        padding-right: 40px;
    }

    .hp-sidecart-item__image-wrap {
        width: 88px;
        height: 88px;
    }

    .hp-sidecart-item__name {
        font-size: 18px;
        line-height: 1.18;
    }

    .hp-sidecart-item__meta {
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .hp-sidecart-item__meta strong {
        font-size: 17px;
    }

    .hp-sidecart-item__qty {
        min-height: 50px;
    }

    .hp-sidecart-item__qty button {
        width: 52px !important;
        min-width: 52px !important;
        height: 50px !important;
        min-height: 50px !important;
    }

    .hp-sidecart-item__qty span {
        min-width: 50px;
        font-size: 22px;
    }

    .hp-sidecart-item__qty button > span {
        min-width: 0;
        font-size: 28px;
    }

    .hp-sidecart-item__remove {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
    }

    .hp-sidecart-item__remove > span {
        font-size: 23px;
    }

    .hp-sidecart__close span {
        font-size: 28px;
    }

    .hp-sidecart__summary-row {
        font-size: 16px;
    }

    .hp-sidecart__summary-row strong {
        font-size: 16px;
    }

    .hp-sidecart__summary-row.is-total,
    .hp-sidecart__summary-row.is-total strong {
        font-size: 21px;
    }

    .hp-sidecart__checkout {
        min-height: 64px;
        border-radius: 19px;
        font-size: 21px;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hp-sidecart {
        max-height: 100dvh;
        border-radius: 22px 22px 0 0;
    }

    .hp-sidecart-handle {
        height: 22px;
    }

    .hp-sidecart__header {
        padding: 4px 14px 10px;
    }

    .hp-sidecart__title-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .hp-sidecart__title {
        font-size: 23px;
    }

    .hp-sidecart__subtitle {
        margin-top: 3px;
        margin-left: 52px;
        font-size: 14px;
    }

    .hp-sidecart__close {
        width: 44px;
        height: 44px;
    }

    .hp-sidecart__body {
        padding: 0 10px 12px;
    }

    .hp-sidecart__footer {
        gap: 8px;
        padding: 10px 10px max(10px, env(safe-area-inset-bottom));
    }

    .hp-sidecart-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .hp-sidecart-item__image-wrap {
        width: 72px;
        height: 72px;
    }

    .hp-sidecart-item__name {
        font-size: 16px;
    }

    .hp-sidecart-item__qty,
    .hp-sidecart-item__qty button {
        min-height: 42px !important;
        height: 42px !important;
    }

    .hp-sidecart-item__qty button {
        width: 44px !important;
        min-width: 44px !important;
    }

    .hp-sidecart-item__qty span {
        min-width: 42px;
        font-size: 19px;
    }

    .hp-sidecart-item__qty button > span {
        min-width: 0;
        font-size: 25px;
    }

    .hp-sidecart__checkout {
        min-height: 52px;
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hp-sidecart,
    .hp-sidecart-backdrop,
    .hp-sidecart__checkout,
    .hp-sidecart__checkout-arrow {
        transition-duration: 0.01ms !important;
    }
}

.hp-user-panel-shell {
    position: fixed;
    inset: 0;
    /* Keep the account panel above checkout Select2 dropdowns, which use 9999. */
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}

.hp-user-panel-shell.is-visible,
.hp-user-panel-shell.is-open,
.hp-user-panel-shell.is-closing {
    visibility: visible;
    pointer-events: auto;
}

.hp-user-panel-shell.is-dragging .hp-user-panel,
.hp-user-panel-shell.is-dragging .hp-user-panel-backdrop {
    transition: none !important;
}

.hp-user-panel-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: var(--hp-share-overlay-bg) !important;
    backdrop-filter: var(--hp-share-overlay-blur) !important;
    -webkit-backdrop-filter: var(--hp-share-overlay-blur) !important;
    transition: opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hp-user-panel-shell.is-open .hp-user-panel-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.hp-user-panel-shell.is-closing .hp-user-panel-backdrop {
    opacity: 0;
    pointer-events: none;
}

.hp-user-panel {
    position: relative;
    width: min(560px, calc(100vw - 48px));
    max-height: min(92vh, 860px);
    opacity: 0;
    transform: translate3d(0, 92px, 0) scale(0.986);
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    will-change: transform, opacity;
}

.hp-user-panel-shell.is-open .hp-user-panel {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
}

.hp-user-panel-shell.is-closing .hp-user-panel {
    opacity: 0;
    transform: translate3d(0, 92px, 0) scale(0.986);
    pointer-events: none;
}

.hp-user-panel__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: inherit;
    padding: 18px;
    border: var(--hp-user-shell-border);
    border-radius: var(--hp-user-shell-radius);
    background:
        linear-gradient(180deg, rgba(34, 33, 31, 0.94) 0%, rgba(18, 18, 17, 0.97) 100%),
        var(--hp-user-shell-bg);
    box-shadow: var(--hp-user-shell-shadow);
    backdrop-filter: var(--hp-user-shell-blur);
    -webkit-backdrop-filter: var(--hp-user-shell-blur);
    color: var(--hp-color-text-primary);
    font-family: var(--hp-font-family-base);
    overflow: hidden;
}

.hp-user-panel__handle {
    width: 54px;
    height: 6px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    display: none;
    touch-action: none;
    cursor: grab;
}

.hp-user-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: var(--hp-user-shell-border);
}

.hp-user-panel__eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hp-user-footer-text);
}

.hp-user-panel__title {
    margin: 0;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--hp-color-text-primary);
}

.hp-user-panel__close {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--hp-user-close-radius);
    border: var(--hp-user-close-border);
    background: var(--hp-user-close-bg);
    box-shadow: var(--hp-user-close-shadow);
    backdrop-filter: var(--hp-user-close-blur);
    -webkit-backdrop-filter: var(--hp-user-close-blur);
    color: var(--hp-color-text-primary);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.hp-user-panel__content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 18px 2px 0;
}

.hp-user-panel .hp-user-bento__hero,
.hp-user-panel .hp-user-bento__card,
.hp-user-panel .hp-user-bento__logout,
.hp-user-panel .hp-user-panel__guest-copy {
    border: var(--hp-user-card-border) !important;
    background:
        linear-gradient(180deg, rgba(56, 55, 52, 0.9) 0%, rgba(38, 38, 36, 0.94) 100%),
        var(--hp-user-card-bg) !important;
    box-shadow: var(--hp-user-card-shadow) !important;
    backdrop-filter: var(--hp-user-card-blur) !important;
    -webkit-backdrop-filter: var(--hp-user-card-blur) !important;
}

.hp-user-panel__guest-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hp-user-panel__guest-copy {
    padding: 22px 18px;
}

.hp-user-panel__guest-copy h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--hp-color-text-primary);
}

.hp-user-panel__guest-copy p {
    margin: 0;
    color: var(--hp-color-text-soft);
    line-height: 1.5;
}

.hp-user-panel__guest-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hp-user-panel__guest-button,
.hp-user-panel__logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 18px;
    border-radius: var(--hp-user-secondary-radius);
    border: var(--hp-user-secondary-border);
    background:
        linear-gradient(180deg, rgba(48, 48, 46, 0.94) 0%, rgba(33, 33, 31, 0.96) 100%),
        var(--hp-user-secondary-bg);
    color: var(--hp-user-secondary-text) !important;
    text-decoration: none;
    font-weight: 600;
}

.hp-user-panel__guest-button--primary {
    background: var(--hp-user-primary-bg);
    border: var(--hp-user-primary-border);
    color: var(--hp-user-primary-text) !important;
}

.hp-user-panel__guest-button--wide {
    grid-column: 1 / -1;
}

.hp-user-panel__logout {
    justify-content: space-between;
    margin-top: 16px;
}

.hp-user-panel__footer {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: var(--hp-user-shell-border);
    font-size: 13px;
    color: var(--hp-user-footer-text);
    text-align: center;
}

@media (max-width: 1024px) {
    .hp-user-panel {
        width: min(640px, calc(100vw - 48px));
        max-height: min(calc(100dvh - 48px), 820px);
        transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hp-user-panel-backdrop {
        transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hp-user-panel__header {
        touch-action: none;
    }

    .hp-user-panel__handle {
        display: block;
        margin-bottom: 14px;
    }

    .hp-user-panel__close {
        touch-action: manipulation;
    }
}

@media (max-width: 767px) {
    .hp-user-panel-shell {
        padding: max(env(safe-area-inset-top), 12px) 0 0;
        align-items: flex-end;
    }

    .hp-user-panel {
        width: 100dvw;
        min-width: 100dvw;
        max-width: 100dvw;
        max-height: calc(100dvh - 12px);
        margin: 0;
        align-self: flex-end;
        transform: translate3d(0, 112%, 0);
        transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hp-user-panel-backdrop {
        transition: opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hp-user-panel-shell.is-closing .hp-user-panel {
        transform: translate3d(0, 112%, 0);
    }

    .hp-user-panel__inner {
        padding: 16px 0;
        border-radius: 30px 30px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .hp-user-panel__header {
        padding: 0 20px 16px;
        touch-action: none;
    }

    .hp-user-panel__content {
        padding: 18px 16px 0;
    }

    .hp-user-panel__footer {
        padding: 14px 16px 0;
        margin-top: 14px;
    }

    .hp-user-panel__guest-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
