:root {
    --hm-ink: #171512;
    --hm-muted: #6f675f;
    --hm-line: #e9e0d6;
    --hm-paper: #fffaf3;
    --hm-panel: #ffffff;
    --hm-spice-red: #b3261e;
    --hm-saffron: #e5a100;
    --hm-leaf: #2f6f4e;
    --hm-shadow: 0 18px 50px rgba(42, 30, 18, 0.12);
}

* {
    box-sizing: border-box;
}

body.hm-site-body {
    margin: 0;
    background: var(--hm-paper);
    color: var(--hm-ink);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.hm-site-body {
    padding-top: 65px;
}

body.hm-menu-open {
    overflow: hidden;
}

.hm-public-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 252, 247, 0.9);
    border-bottom: 1px solid rgba(226, 214, 201, 0.82);
    box-shadow: 0 8px 24px rgba(41, 31, 22, 0.07);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

body.hm-header-compact .hm-public-header {
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 10px 28px rgba(41, 31, 22, 0.1);
}

.hm-public-header__inner {
    position: relative;
    width: min(1180px, calc(100% - 28px));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    transition: min-height 180ms ease;
}

body.hm-header-compact .hm-public-header__inner {
    min-height: 56px;
}

.hm-public-header__brand {
    display: inline-flex;
    align-items: center;
    width: 154px;
    text-decoration: none;
    transition: width 180ms ease;
}

body.hm-header-compact .hm-public-header__brand {
    width: 132px;
}

.hm-public-header__logo {
    display: block;
    width: 100%;
    height: 55px;
    object-fit: contain;
    object-position: left center;
    transition: height 180ms ease;
}

body.hm-header-compact .hm-public-header__logo {
    height: 50px;
}

.hm-public-header__actions,
.hm-public-header__mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
}

.hm-public-header__mobile-actions {
    display: none;
}

.hm-icon {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.hm-icon-button {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(34, 28, 23, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: #221c17;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(39, 29, 20, 0.08);
    transition: width 180ms ease, height 180ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.hm-header-compact .hm-icon-button {
    width: 32px;
    height: 32px;
}

body.hm-header-compact .hm-icon {
    width: 16px;
    height: 16px;
}

.hm-icon-button:hover,
.hm-icon-button:focus {
    border-color: rgba(179, 38, 30, 0.34);
    background: #fff4e6;
    color: var(--hm-spice-red);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(39, 29, 20, 0.14);
}

.hm-header-search {
    position: relative;
    width: min(320px, 36vw);
    height: 38px;
    display: flex;
    align-items: center;
   
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(34, 28, 23, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(39, 29, 20, 0.08);
    transition: width 220ms ease, height 180ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.hm-header-compact .hm-header-search {
    width: min(280px, 34vw);
    height: 32px;
}

.hm-header-search.is-open,
.hm-header-search:focus-within {
    width: min(320px, 36vw);
    border-color: rgba(47, 111, 78, 0.34);
    box-shadow: 0 16px 34px rgba(47, 111, 78, 0.12);
}

.hm-header-search input {
    min-width: 0;
    flex: 1 1 auto;
    height: 100%;
    padding: 0 18px 0 4px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #221c17;
    font-size: 0.94rem;
    font-weight: 800;
    opacity: 1;
    transition: opacity 160ms ease;
}

.hm-header-search.is-open input,
.hm-header-search:focus-within input {
    opacity: 1;
}

.hm-header-search input::placeholder {
    color: #8f8378;
}

.hm-header-search.has-search-results,
.hm-header-search:focus-within {
    overflow: visible;
}

.hm-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1400;
    overflow: hidden;
    border: 1px solid rgba(179, 38, 30, 0.16);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(23, 29, 23, 0.18);
}

.hm-search-dropdown[hidden] {
    display: none;
}

.hm-search-dropdown__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-bottom: 1px solid #edf0f3;
    background: #fff8f6;
}

.hm-search-dropdown__head span {
    color: #68707a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-search-dropdown__head a,
.hm-search-dropdown__empty a {
    color: #b3261e;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
}

.hm-search-result {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    color: #171d17;
    text-decoration: none;
}

.hm-search-result + .hm-search-result {
    border-top: 1px solid #f0f2f4;
}

.hm-search-result:hover,
.hm-search-result.is-active {
    background: #fff7f5;
}

.hm-search-result img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 10px;
    background: #f6f7f8;
}

.hm-search-result__body {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.hm-search-result__meta,
.hm-search-result__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.hm-search-result__meta b {
    color: #b3261e;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hm-search-result__meta small {
    color: #2f7d32;
    font-size: 0.72rem;
    font-weight: 900;
}

.hm-search-result__meta small.is-out {
    color: #9a3412;
}

.hm-search-result strong {
    overflow: hidden;
    font-size: 0.94rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hm-search-result em {
    overflow: hidden;
    color: #68707a;
    font-size: 0.78rem;
    font-style: normal;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hm-search-result__price i {
    color: #b3261e;
    font-style: normal;
    font-weight: 900;
}

.hm-search-result__price del {
    color: #8a929c;
    font-size: 0.75rem;
}

.hm-search-result__price mark {
    padding: 2px 6px;
    border-radius: 999px;
    background: #eaf6e9;
    color: #2f7d32;
    font-size: 0.68rem;
    font-weight: 900;
}

.hm-search-result__go {
    display: grid;
    min-width: 42px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: #b3261e;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
}

.hm-search-dropdown__empty {
    display: grid;
    gap: 7px;
    padding: 18px 14px;
    color: #68707a;
    font-size: 0.9rem;
    text-align: center;
}

.hm-search-dropdown__empty strong {
    color: #171d17;
}

.hm-cart-button span {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hm-spice-red), #d94b2f);
    color: #ffffff;
    font-size: 0.66rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(179, 38, 30, 0.22);
}

.hm-cart-button.is-cart-hit {
    animation: hmCartHit 260ms ease;
}

@keyframes hmCartHit {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.hm-menu-toggle {
    background: #171512;
    color: #ffffff;
}

.hm-menu-toggle:hover,
.hm-menu-toggle:focus {
    border-color: #171512;
    background: #2d251e;
    color: #ffffff;
}

.hm-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    overflow-y: auto;
    padding: 26px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.hm-mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.hm-mobile-menu__backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background:
        linear-gradient(135deg, rgba(23, 21, 18, 0.74), rgba(47, 31, 20, 0.58)),
        rgba(23, 21, 18, 0.58);
    z-index: 0;
}

.hm-mobile-menu__panel {
    position: relative;
    width: min(680px, 100%);
    max-height: calc(100dvh - 52px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
    grid-template-areas:
        "head head"
        "promo links"
        "search links"
        "quick links"
        "cta links";
    gap: 14px;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(179, 38, 30, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(255, 240, 220, 0.86), rgba(255, 250, 243, 0) 300px),
        #fffaf3;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.3);
    transform: translateY(10px) scale(0.985);
    opacity: 0;
    z-index: 1;
    transition: transform 220ms ease, opacity 180ms ease;
}

.hm-mobile-menu.is-open .hm-mobile-menu__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.hm-mobile-menu__head {
    grid-area: head;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hm-mobile-menu__brand {
    display: grid;
    gap: 1px;
}

.hm-mobile-menu__brand img {
    width: 104px;
    height: 50px;
    object-fit: contain;
    object-position: left center;
}

.hm-mobile-menu__brand span {
    color: var(--hm-muted);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hm-mobile-menu__promo {
    grid-area: promo;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(179, 38, 30, 0.13);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 232, 0.88)),
        #ffffff;
    box-shadow: 0 16px 42px rgba(42, 30, 18, 0.1);
}

.hm-mobile-menu__promo span {
    color: var(--hm-spice-red);
    font-size: 0.68rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hm-mobile-menu__promo strong {
    color: #221c17;
    max-width: 320px;
    font-size: clamp(1.24rem, 3vw, 1.76rem);
    line-height: 1.04;
}

.hm-mobile-menu__promo p {
    max-width: 320px;
    margin: 0;
    color: var(--hm-muted);
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.45;
}

.hm-mobile-menu__search {
    grid-area: search;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid rgba(34, 28, 23, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(42, 30, 18, 0.08);
}

.hm-mobile-menu__search .hm-icon {
    width: 17px;
    height: 17px;
    color: var(--hm-leaf);
}

.hm-mobile-menu__search input {
    min-width: 0;
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    background: transparent;
    color: #221c17;
    font-size: 0.84rem;
    font-weight: 850;
}

.hm-mobile-menu__search input::placeholder {
    color: #8f8378;
}

.hm-mobile-menu__links {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 10px;
}

.hm-mobile-menu__links a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 12px;
    border: 1px solid rgba(34, 28, 23, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    color: #221c17;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(42, 30, 18, 0.07);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.hm-mobile-menu__links a > span:last-child {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.hm-mobile-menu__links strong {
    color: inherit;
    font-size: 0.84rem;
    font-weight: 950;
    line-height: 1.08;
}

.hm-mobile-menu__links em {
    color: var(--hm-muted);
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.15;
}

.hm-mobile-menu__link-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: #fff0dc;
    color: var(--hm-spice-red);
}

.hm-mobile-menu__link-icon .hm-icon {
    width: 17px;
    height: 17px;
}

.hm-mobile-menu__links a:hover,
.hm-mobile-menu__links a:focus {
    transform: translateY(-1px);
    border-color: rgba(179, 38, 30, 0.22);
    background: #ffffff;
    color: var(--hm-spice-red);
}

.hm-mobile-menu__cta {
    grid-area: cta;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hm-spice-red), #d94b2f);
    color: #ffffff;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(179, 38, 30, 0.2);
}

.hm-mobile-bottom-nav {
    display: none;
}

.hm-public-main {
    min-height: calc(100vh - 65px);
}

.hm-hero-slider {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(430px, calc(135dvh - 65px), 760px);
    overflow: hidden;
    touch-action: pan-y;
    background:
        linear-gradient(135deg, rgba(179, 38, 30, 0.12), rgba(47, 111, 78, 0.08)),
        #201711;
}

.hm-hero-slider__viewport {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #201711;
}

.hm-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    color: inherit;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity 680ms ease, visibility 680ms ease, transform 2200ms ease;
}

.hm-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.hm-hero-slide picture,
.hm-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.hm-hero-slide img {
    object-fit: cover;
    object-position: center;
    transition: transform 5200ms ease;
}

.hm-hero-slide.is-active img {
    transform: scale(1.018);
}

.hm-hero-slider::before,
.hm-hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hm-hero-slider::before {
    background:
        linear-gradient(90deg, rgba(23, 21, 18, 0.24), rgba(23, 21, 18, 0.02) 42%, rgba(23, 21, 18, 0.18)),
        linear-gradient(180deg, rgba(23, 21, 18, 0.08), transparent 38%, rgba(23, 21, 18, 0.22));
}

.hm-hero-slider::after {
    box-shadow: inset 0 -22px 44px rgba(23, 21, 18, 0.2);
}

.hm-hero-slider__controls {
    position: absolute;
    right: max(18px, calc((100vw - 1180px) / 2));
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.78);
    box-shadow: 0 18px 48px rgba(23, 21, 18, 0.18);
    backdrop-filter: blur(18px);
}

.hm-hero-slider__arrow,
.hm-hero-slider__dot {
    border: 0;
    padding: 0;
    cursor: pointer;
}

.hm-hero-slider__arrow {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    color: #221c17;
    box-shadow: 0 10px 24px rgba(39, 29, 20, 0.14);
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.hm-hero-slider__arrow:hover,
.hm-hero-slider__arrow:focus {
    background: var(--hm-spice-red);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(179, 38, 30, 0.24);
}

.hm-hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hm-hero-slider__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(34, 28, 23, 0.24);
    transition: width 180ms ease, background 160ms ease, transform 160ms ease;
}

.hm-hero-slider__dot:hover,
.hm-hero-slider__dot:focus {
    background: rgba(179, 38, 30, 0.5);
    transform: scale(1.12);
}

.hm-hero-slider__dot.is-active {
    width: 30px;
    background: linear-gradient(135deg, var(--hm-spice-red), var(--hm-saffron));
    transform: none;
}

@media (max-width: 991.98px) {
    .hm-public-header__inner {
        width: min(100% - 24px, 1180px);
    }

    .hm-header-search.is-open,
    .hm-header-search:focus-within {
        width: min(320px, 46vw);
    }

    .hm-public-main {
        min-height: calc(100vh - 65px);
    }

    .hm-hero-slider {
        min-height: clamp(390px, calc(100dvh - 65px), 680px);
    }

    .hm-hero-slider__controls {
        right: 18px;
        bottom: 18px;
    }

    .hm-mobile-menu {
        display: block;
        padding: 0;
        overflow: hidden;
        align-items: flex-end;
        justify-items: stretch;
    }

    .hm-mobile-menu__backdrop {
        background: rgba(23, 21, 18, 0.42);
    }

    .hm-mobile-menu__panel {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: min(85dvh, 560px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "promo"
            "search"
            "links"
            "quick"
            "cta";
        gap: 14px;
        padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
        border: 0;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -18px 48px rgba(23, 21, 18, 0.25);
        background:
            linear-gradient(135deg, rgba(179, 38, 30, 0.08), transparent 36%),
            linear-gradient(180deg, rgba(255, 240, 220, 0.9), rgba(255, 250, 243, 0) 280px),
            #fffaf3;
        transform: translateY(100%);
        transition: transform 220ms ease, max-height 220ms ease, border-radius 220ms ease, opacity 180ms ease;
    }

    .hm-mobile-menu.is-open .hm-mobile-menu__panel {
        transform: translateY(0);
    }

    .hm-mobile-menu.is-expanded .hm-mobile-menu__panel {
        max-height: calc(100dvh - 10px);
        border-radius: 14px 14px 0 0;
    }

    .hm-mobile-menu__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hm-mobile-menu__links a {
        min-height: 76px;
    }

}

@media (max-width: 575.98px) {
    body.hm-site-body {
        padding-top: 61px;
        padding-bottom: 62px;
    }

    .hm-public-header__inner {
        min-height: 60px;
        width: min(100% - 22px, 1180px);
        gap: 8px;
    }

    body.hm-header-compact .hm-public-header__inner {
        min-height: 54px;
    }

    .hm-public-header__brand {
        width: 128px;
    }

    body.hm-header-compact .hm-public-header__brand {
        width: 112px;
    }

    .hm-public-header__logo {
        height: 40px;
    }

    body.hm-header-compact .hm-public-header__logo {
        height: 42px;
    }

    .hm-public-header__actions {
        display: none;
    }

    .hm-public-header__mobile-actions {
        display: flex;
        gap: 7px;
    }

    .hm-icon-button {
        width: 36px;
        height: 36px;
        box-shadow: 0 8px 18px rgba(39, 29, 20, 0.08);
    }

    body.hm-header-compact .hm-icon-button {
        width: 32px;
        height: 32px;
    }

    .hm-icon {
        width: 17px;
        height: 17px;
    }

    body.hm-header-compact .hm-icon {
        width: 15px;
        height: 15px;
    }

    .hm-header-search,
    body.hm-header-compact .hm-header-search {
        width: 36px;
        height: 36px;
    }

    body.hm-header-compact .hm-header-search {
        width: 32px;
        height: 32px;
    }

    .hm-header-search input {
        font-size: 0.76rem;
        opacity: 0;
    }

    .hm-header-search.is-open input,
    .hm-header-search:focus-within input {
        opacity: 1;
    }

    .hm-header-search--mobile.is-open,
    .hm-header-search--mobile:focus-within {
        position: absolute;
        right: 88px;
        width: min(158px, calc(100vw - 138px));
        z-index: 3;
    }

    body.hm-header-compact .hm-header-search--mobile.is-open,
    body.hm-header-compact .hm-header-search--mobile:focus-within {
        right: 78px;
        width: min(158px, calc(100vw - 126px));
    }

    .hm-cart-button span {
        top: -3px;
        right: -3px;
        min-width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .hm-mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 45;
        min-height: 54px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding: 5px max(10px, env(safe-area-inset-right)) max(5px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid rgba(34, 28, 23, 0.1);
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.96)),
            #fffaf3;
        box-shadow: 0 -10px 32px rgba(32, 24, 17, 0.13);
        backdrop-filter: blur(20px);
    }

    .hm-mobile-bottom-nav a {
        position: relative;
        min-width: 0;
        min-height: 44px;
        display: grid;
        place-items: center;
        gap: 1px;
        border-radius: 14px;
        color: #685d52;
        font-size: 0.56rem;
        font-weight: 900;
        line-height: 1;
        text-decoration: none;
        transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .hm-mobile-bottom-nav a.is-active,
    .hm-mobile-bottom-nav a:hover,
    .hm-mobile-bottom-nav a:focus {
        
        color: var(--hm-spice-red);
    }

    .hm-mobile-bottom-nav a.is-active::before {
        content: "";
        position: absolute;
        top: 5px;
        width: 4px;
        height: 4px;
        border-radius: 999px;
        
    }

    .hm-mobile-bottom-nav .hm-icon {
        width: 16px;
        height: 16px;
    }

    .hm-public-main {
        min-height: calc(100vh - 57px);
    }

    .hm-hero-slider {
        min-height: calc(100dvh - 123px);
    }

    .hm-hero-slide img {
        object-position: center top;
    }

    .hm-hero-slider::before {
        background:
            linear-gradient(180deg, rgba(23, 21, 18, 0.04), transparent 36%, rgba(23, 21, 18, 0.3)),
            linear-gradient(90deg, rgba(23, 21, 18, 0.12), transparent 42%, rgba(23, 21, 18, 0.1));
    }

    .hm-hero-slider__controls {
        right: auto;
        left: 50%;
        bottom: 12px;
        gap: 0;
        padding: 8px 10px;
        transform: translateX(-50%);
        background: rgba(255, 250, 243, 0.62);
        box-shadow: 0 12px 30px rgba(23, 21, 18, 0.14);
    }

    .hm-hero-slider__arrow {
        display: none;
    }

    .hm-hero-slider__dots {
        gap: 8px;
    }

    .hm-hero-slider__dot {
        width: 8px;
        height: 8px;
    }

    .hm-hero-slider__dot.is-active {
        width: 26px;
    }


}

@media (max-width: 380px) {
    .hm-public-header__inner {
        width: min(100% - 18px, 1180px);
    }

    .hm-public-header__brand {
        width: 116px;
    }

    body.hm-header-compact .hm-public-header__brand {
        width: 100px;
    }

    .hm-public-header__mobile-actions {
        gap: 5px;
    }

    .hm-icon-button,
    .hm-header-search,
    body.hm-header-compact .hm-icon-button,
    body.hm-header-compact .hm-header-search,
    .hm-mobile-bottom-nav {
        padding-right: max(6px, env(safe-area-inset-right));
        padding-left: max(6px, env(safe-area-inset-left));
    }

    .hm-mobile-bottom-nav a {
        border-radius: 10px;
        font-size: 0.52rem;
    }
}

/* Shared public header refresh */
body.hm-site-body {
    padding-top: 78px;
}

.hm-public-header {
    background: rgba(255, 252, 247, 0.96);
}

.hm-public-header__inner {
    width: min(1240px, calc(100% - 20px));
    min-height: 76px;
    gap: 12px;
}

body.hm-header-compact .hm-public-header__inner {
    min-height: 68px;
}

.hm-public-header__brand {
    width: 174px;
}

body.hm-header-compact .hm-public-header__brand {
    width: 158px;
}

.hm-public-header__logo {
    height: 62px;
}

body.hm-header-compact .hm-public-header__logo {
    height: 56px;
}

.hm-header-search {
    width: min(430px, 38vw);
    height: 42px;
    gap: 8px;
    padding: 0 6px 0 13px;
    flex: 1 1 auto;
    max-width: 470px;
    border-radius: 8px;
}

body.hm-header-compact .hm-header-search,
.hm-header-search.is-open,
.hm-header-search:focus-within {
    width: min(430px, 38vw);
    height: 40px;
}

.hm-header-search > .hm-icon {
    width: 17px;
    height: 17px;
    color: var(--hm-leaf);
    flex: 0 0 auto;
}

.hm-header-search input {
    padding: 0;
    opacity: 1;
    font-size: 0.84rem;
}

.hm-header-search button {
    min-height: 30px;
    border: 0;
    border-radius: 6px;
    padding: 0 12px;
    background: var(--hm-spice-red);
    color: #ffffff;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 900;
}

.hm-public-header__actions {
    gap: 7px;
    margin-left: auto;
}

.hm-public-header__actions .hm-icon-button {
    width: 44px;
    height: 44px;
}

.hm-public-header__actions .hm-icon {
    width: 20px;
    height: 20px;
}

.hm-public-header__mobile-actions {
    display: none;
}

.hm-account-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(34, 28, 23, 0.12);
    border-radius: 999px;
    padding: 0 13px 0 10px;
    background: #ffffff;
    color: #221c17;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(39, 29, 20, 0.08);
}

.hm-account-link span {
    display: grid;
    gap: 0;
    line-height: 1;
}

.hm-account-link strong,
.hm-account-link em {
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
}

.hm-account-link .hm-icon {
    width: 20px;
    height: 20px;
}

.hm-account-link em {
    color: var(--hm-muted);
}

.hm-menu-toggle {
    background: #171512;
    color: #ffffff;
}

.hm-mobile-menu {
    place-items: stretch end;
    padding: 0;
}

.hm-mobile-menu__backdrop {
    background: rgba(23, 21, 18, 0.32);
}

.hm-mobile-menu__panel {
    width: min(380px, 92vw);
    height: 100dvh;
    max-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-areas:
        "head"
        "promo"
        "links"
        "cta";
    border-radius: 0;
    padding: max(16px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
    transform: translateX(105%);
    margin-left: auto;
}

.hm-mobile-menu.is-open .hm-mobile-menu__panel {
    transform: translateX(0);
}

.hm-mobile-menu__links {
    grid-template-columns: 1fr;
    overflow-y: auto;
}

.hm-mobile-menu__links a {
    min-height: 52px;
    border-radius: 8px;
}

.hm-mobile-menu__search {
    display: none;
}

.hm-mobile-bottom-nav button {
    border: 0;
    background: transparent;
    font: inherit;
}

.hm-mobile-bottom-nav a,
.hm-mobile-bottom-nav button {
    position: relative;
    min-width: 0;
    min-height: 44px;
    display: grid;
    place-items: center;
    gap: 1px;
    border-radius: 14px;
    color: #685d52;
    font-size: 0.56rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.hm-kamarhati-body {
    background:
        radial-gradient(circle at 82% 12%, rgba(229, 161, 0, 0.14), transparent 28%),
        linear-gradient(180deg, #fffaf3 0%, #f8f1e7 100%);
}

.hm-kamarhati-page {
    width: min(100% - 28px, 1080px);
    min-height: calc(100vh - 160px);
    display: grid;
    align-items: center;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 72px) 0;
}

.hm-kamarhati-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(18px, 4vw, 44px);
    align-items: center;
    border: 1px solid rgba(88, 50, 26, 0.1);
    border-radius: 24px;
    padding: clamp(20px, 5vw, 46px);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(39, 29, 20, 0.1);
}

.hm-kamarhati-hero__copy {
    display: grid;
    gap: 13px;
}

.hm-kamarhati-hero__copy > span {
    width: max-content;
    max-width: 100%;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(179, 38, 30, 0.14);
    border-radius: 999px;
    padding: 0 12px;
    background: #fff4f2;
    color: var(--hm-spice-red);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hm-kamarhati-hero__copy h1 {
    margin: 0;
    color: #171512;
    font-family: 'Outfit', "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.1rem, 6vw, 4.5rem);
    font-weight: 950;
    line-height: 0.98;
}

.hm-kamarhati-hero__copy p {
    max-width: 620px;
    margin: 0;
    color: var(--hm-muted);
    font-size: clamp(0.98rem, 2vw, 1.16rem);
    font-weight: 750;
    line-height: 1.58;
}

.hm-kamarhati-hero__cta {
    width: max-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 20px;
    background: var(--hm-spice-red);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(179, 38, 30, 0.2);
}

.hm-kamarhati-hero__cta:hover,
.hm-kamarhati-hero__cta:focus {
    background: #962019;
    color: #ffffff;
}

.hm-kamarhati-hero__panel {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(35, 86, 72, 0.12);
    border-radius: 18px;
    padding: 18px;
    background: #f2faf4;
}

.hm-kamarhati-hero__panel strong {
    color: #235648;
    font-size: 1rem;
    font-weight: 950;
}

.hm-kamarhati-hero__panel ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
    color: #355f50;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.45;
}

.hm-mobile-bottom-nav a.is-active,
.hm-mobile-bottom-nav a:hover,
.hm-mobile-bottom-nav a:focus,
.hm-mobile-bottom-nav button:hover,
.hm-mobile-bottom-nav button:focus {
    
    color: var(--hm-spice-red);
}

@media (min-width: 576px) {
    .hm-header-search--mobile {
        display: none;
    }
}

@media (max-width: 575.98px) {
    body.hm-site-body {
        padding-top: 116px;
        padding-bottom: 64px;
    }

    .hm-kamarhati-page {
        width: calc(100% - 22px);
        align-items: start;
        padding-top: 24px;
        padding-bottom: 88px;
    }

    .hm-kamarhati-hero {
        grid-template-columns: 1fr;
        border-radius: 18px;
        padding: 18px;
    }

    .hm-kamarhati-hero__copy h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hm-kamarhati-hero__cta {
        width: 100%;
    }

    .hm-public-header__inner,
    body.hm-header-compact .hm-public-header__inner {
        min-height: 70px;
        width: min(100% - 18px, 1180px);
        align-items: center;
    }

    .hm-public-header__brand,
    body.hm-header-compact .hm-public-header__brand {
        width: 148px;
    }

    .hm-public-header__logo,
    body.hm-header-compact .hm-public-header__logo {
        height: 56px;
    }

    .hm-public-header__actions,
    .hm-header-search--desktop {
        display: none;
    }

    .hm-public-header__mobile-actions {
        display: flex;
        gap: 9px;
        margin-left: auto;
    }

    .hm-public-header__mobile-actions .hm-icon-button {
        width: 44px;
        height: 44px;
    }

    .hm-public-header__mobile-actions .hm-icon {
        width: 20px;
        height: 20px;
    }

    .hm-header-search--mobile,
    body.hm-header-compact .hm-header-search--mobile,
    .hm-header-search--mobile.is-open,
    .hm-header-search--mobile:focus-within,
    body.hm-header-compact .hm-header-search--mobile.is-open,
    body.hm-header-compact .hm-header-search--mobile:focus-within {
        position: static;
        width: min(100% - 18px, 1180px);
        max-width: none;
        height: 42px;
        display: flex;
        margin: 0 auto 8px;
        border-radius: 8px;
    }

    .hm-header-search--mobile input {
        opacity: 1;
        font-size: 0.78rem;
    }

    .hm-header-search--mobile button {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.68rem;
    }

    .hm-mobile-menu {
        place-items: end stretch;
        padding: 0;
    }

    .hm-mobile-menu__panel {
        width: 100%;
        height: auto;
        
        border-radius: 16px 16px 0 0;
        padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
        transform: translateY(105%);
        box-shadow: 0 -18px 48px rgba(23, 21, 18, 0.24);
    }

    .hm-mobile-menu.is-open .hm-mobile-menu__panel {
        transform: translateY(0);
    }

    .hm-mobile-menu__promo {
        padding: 12px;
        border-radius: 8px;
    }

    .hm-mobile-menu__promo strong {
        font-size: 1rem;
        line-height: 1.15;
    }

    .hm-mobile-menu__promo p {
        font-size: 0.72rem;
    }

    .hm-mobile-menu__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hm-mobile-menu__links a {
        min-height: 64px;
        padding: 9px;
        border-radius: 8px;
    }

    .hm-mobile-menu__link-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .hm-mobile-bottom-nav {
        display: grid;
    }

    .hm-mobile-bottom-nav button .hm-icon,
    .hm-mobile-bottom-nav a .hm-icon {
        width: 16px;
        height: 16px;
    }
}

/* Public menu final overrides */
.hm-mobile-menu {
    align-items: stretch;
    justify-items: end;
    padding: 0;
    overflow: hidden;
}

.hm-mobile-menu__panel {
    width: min(400px, 94vw);
    height: 100dvh;
    max-height: 100dvh;
    margin-left: auto;
    border-radius: 0;
    padding: max(16px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    grid-template-areas:
        "head"
        "promo"
        "links"
        "cta";
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 12px;
    overflow: hidden;
    transform: translateX(105%);
    box-shadow: -18px 0 48px rgba(23, 21, 18, 0.22);
}

.hm-mobile-menu.is-open .hm-mobile-menu__panel {
    transform: translateX(0);
}

.hm-mobile-menu__links {
    min-height: 0;
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-width: thin;
}

.hm-mobile-menu__links a {
    min-height: 54px;
    border-radius: 8px;
}

@media (max-width: 575.98px) {
    .hm-mobile-menu {
        display: grid; /* <-- 1. ADD THIS LINE to restore alignment */
        align-items: end;
        justify-items: stretch;
    }

    .hm-mobile-menu__panel {
        position: absolute; /* <-- 2. ADD THIS LINE */
        bottom: 0;          /* <-- 3. ADD THIS LINE */
        left: 0;            /* <-- 4. ADD THIS LINE */
        
        /* Keep all your existing properties below untouched */
        width: 100%;
        height: auto;
        
        margin-left: 0;
        border-radius: 16px 16px 0 0;
        padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
        grid-template-rows: auto auto minmax(0, 1fr) auto;
        transform: translateY(105%);
        box-shadow: 0 -18px 48px rgba(23, 21, 18, 0.25);
        transition: transform 220ms ease, opacity 180ms ease;
        will-change: transform;
    }

    .hm-mobile-menu.is-open .hm-mobile-menu__panel {
        transform: translateY(0);
    }

    .hm-mobile-menu.is-expanded .hm-mobile-menu__panel {
        max-height: calc(100dvh - 10px);
        border-radius: 14px 14px 0 0;
    }

    .hm-mobile-menu__promo {
        padding: 10px;
        border-radius: 8px;
        gap: 5px;
    }

    .hm-mobile-menu__promo span {
        font-size: 0.58rem;
    }

    .hm-mobile-menu__promo strong {
        max-width: none;
        font-size: 0.88rem;
        line-height: 1.15;
    }

    .hm-mobile-menu__promo p {
        max-width: none;
        font-size: 0.64rem;
        line-height: 1.32;
    }

    .hm-mobile-menu__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hm-mobile-menu__links a {
        min-height: 58px;
        gap: 7px;
        padding: 8px;
        border-radius: 8px;
    }

    .hm-mobile-menu__links strong {
        font-size: 0.68rem;
    }

    .hm-mobile-menu__links em {
        font-size: 0.54rem;
    }

    .hm-mobile-menu__link-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .hm-mobile-menu__link-icon .hm-icon {
        width: 15px;
        height: 15px;
    }

    .hm-mobile-menu__cta {
        min-height: 42px;
        margin-top: 0;
        font-size: 0.78rem;
    }
}


/* Mobile header and app nav polish */
@media (max-width: 575.98px) {
    body.hm-site-body {
        padding-bottom: 78px;
    }

    .hm-public-header__inner {
        min-height: 70px;
        transition: min-height 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.hm-header-compact .hm-public-header__inner {
        min-height: 58px;
    }

    .hm-public-header__brand {
        width: 148px;
        transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.hm-header-compact .hm-public-header__brand {
        width: 124px;
    }

    .hm-public-header__logo {
        height: 56px;
        transition: height 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.hm-header-compact .hm-public-header__logo {
        height: 44px;
    }

    .hm-public-header__mobile-actions {
        gap: 8px;
    }

    .hm-public-header__mobile-actions .hm-icon-button {
        width: 44px;
        height: 44px;
        border-color: rgba(179, 38, 30, 0.14);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 235, 0.96)),
            #ffffff;
        color: #2b231d;
        box-shadow:
            0 12px 28px rgba(42, 30, 18, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1), height 260ms cubic-bezier(0.22, 1, 0.36, 1), background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    body.hm-header-compact .hm-public-header__mobile-actions .hm-icon-button {
        width: 38px;
        height: 38px;
    }

    .hm-public-header__mobile-actions .hm-icon-button:hover,
    .hm-public-header__mobile-actions .hm-icon-button:focus {
        border-color: rgba(179, 38, 30, 0.32);
        background: linear-gradient(180deg, #fff7eb, #ffe9cc);
        color: var(--hm-spice-red);
        box-shadow: 0 16px 34px rgba(179, 38, 30, 0.18);
    }

    .hm-public-header__mobile-actions .hm-icon {
        width: 20px;
        height: 20px;
        transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1), height 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.hm-header-compact .hm-public-header__mobile-actions .hm-icon {
        width: 18px;
        height: 18px;
    }

    .hm-cart-button span {
        top: -5px;
        right: -5px;
        min-width: 19px;
        height: 19px;
        border: 2px solid #fffaf3;
        font-size: 0.62rem;
        box-shadow: 0 8px 18px rgba(179, 38, 30, 0.28);
    }

    body.hm-header-compact .hm-cart-button span {
        top: -4px;
        right: -4px;
        min-width: 17px;
        height: 17px;
        font-size: 0.58rem;
    }

    .hm-header-search--mobile,
    .hm-header-search--mobile.is-open,
    .hm-header-search--mobile:focus-within {
        height: 42px;
        margin-bottom: 8px;
        transition: height 260ms cubic-bezier(0.22, 1, 0.36, 1), margin 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
    }

    body.hm-header-compact .hm-header-search--mobile,
    body.hm-header-compact .hm-header-search--mobile.is-open,
    body.hm-header-compact .hm-header-search--mobile:focus-within {
        height: 36px;
        margin-bottom: 6px;
    }

    body.hm-header-compact .hm-header-search--mobile button {
        min-height: 26px;
        padding: 0 9px;
        font-size: 0.64rem;
    }

    .hm-mobile-bottom-nav {
        min-height: 68px;
        padding: 7px max(10px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid rgba(34, 28, 23, 0.12);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.98)),
            #fffaf3;
        box-shadow: 0 -14px 38px rgba(32, 24, 17, 0.16);
    }

    .hm-mobile-bottom-nav a,
    .hm-mobile-bottom-nav button {
        min-height: 54px;
        border-radius: 16px;
        gap: 3px;
        color: #5f554b;
        font-size: 0.64rem;
        letter-spacing: 0;
        transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .hm-mobile-bottom-nav a.is-active,
    .hm-mobile-bottom-nav a:hover,
    .hm-mobile-bottom-nav a:focus,
    .hm-mobile-bottom-nav button:hover,
    .hm-mobile-bottom-nav button:focus {
        
        color: var(--hm-spice-red);
        
        transform: translateY(-1px);
    }

    .hm-mobile-bottom-nav a.is-active::before {
        content: none;
    }

    .hm-mobile-bottom-nav button .hm-icon,
    .hm-mobile-bottom-nav a .hm-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 380px) {
    .hm-mobile-bottom-nav {
        padding-right: max(6px, env(safe-area-inset-right));
        padding-left: max(6px, env(safe-area-inset-left));
    }

    .hm-mobile-bottom-nav a,
    .hm-mobile-bottom-nav button {
        min-height: 50px;
        border-radius: 14px;
        font-size: 0.58rem;
    }

    .hm-mobile-bottom-nav button .hm-icon,
    .hm-mobile-bottom-nav a .hm-icon {
        width: 18px;
        height: 18px;
    }
}
















/* Import Modern App Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800;900&display=swap');

/* ==========================================================================
   VERTICAL PROCESS FLOW (Desktop Cards -> Mobile Timeline)
   ========================================================================== */
.hm-process-showcase {
    position: relative;
    padding: 100px 0 120px;
    background: var(--hm-paper);
    overflow: hidden;
    z-index: 1;
}

.hm-process-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(179,38,30,0.04) 0%, rgba(255,250,243,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Base Header (Desktop) */
.hm-process-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.hm-process-kicker {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #fff4f2;
    border: 1px solid rgba(179, 38, 30, 0.15);
    border-radius: 999px;
    color: var(--hm-spice-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hm-process-kicker .hm-icon { width: 16px; height: 16px; }

.hm-process-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1; 
    color: var(--hm-ink);
    margin-bottom: 18px;
    letter-spacing: -0.03em; 
}

.hm-process-title span {
    background: linear-gradient(135deg, var(--hm-spice-red), var(--hm-saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hm-process-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--hm-muted);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto; 
}

/* Desktop Grid Layout (Cards) */
.hm-process-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hm-process-step {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(34, 28, 23, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(42, 30, 18, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.hm-step-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(179,38,30,0.06) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hm-step-text, .hm-step-graphic {
    position: relative;
    z-index: 1;
}

.hm-step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--hm-line);
    opacity: 0.4;
    line-height: 1;
    z-index: -1;
    transition: color 0.4s ease, transform 0.4s ease;
}

/* Hover Effects Restricted to Desktop Mice */
@media (hover: hover) {
    .hm-process-step:hover {
        transform: translateY(-8px);
        border-color: rgba(179, 38, 30, 0.15);
        box-shadow: 0 20px 40px rgba(179, 38, 30, 0.12);
    }
    .hm-process-step:hover .hm-step-glow { opacity: 1; }
    .hm-process-step:hover .hm-step-number {
        color: var(--hm-spice-red);
        opacity: 0.1;
        transform: scale(1.1) translate(-10px, 10px);
    }
    .hm-process-step:hover .hm-step-graphic { transform: scale(1.05); }
}

/* Graphics & Text */
.hm-step-graphic {
    width: 130px;
    height: 130px;
    margin: 0 auto 30px 0;
    transition: transform 0.4s ease;
}

.hm-step-graphic svg { width: 100%; height: 100%; display: block; }

.hm-step-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hm-ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.hm-step-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--hm-muted);
    line-height: 1.6;
    margin: 0;
}

.hm-step-text p strong { color: var(--hm-spice-red); font-weight: 600; }

/* SVG Keyframes */
@keyframes hmFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes hmPound {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}
@keyframes hmSplashOut {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}
@keyframes hmPulseStar {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.hm-float-item { animation: hmFloat 3s ease-in-out infinite; transform-origin: center; }
.hm-pestle-anim { animation: hmPound 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite; }
.hm-splash { animation: hmSplashOut 1.2s ease-in-out infinite; }
.hm-pulse-star { animation: hmPulseStar 2s ease-in-out infinite; transform-origin: center; }

/* Scroll Animations */
.hm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}
.hm-reveal.is-visible { opacity: 1; transform: translateY(0); }


/* ==========================================================================
   MOBILE VERTICAL TIMELINE FLOW
   ========================================================================== */
@media (max-width: 991.98px) {
    .hm-process-showcase { padding: 50px 0 70px; }
    
    .hm-process-header { 
        text-align: left;
        padding: 0 10px; 
        margin-bottom: 40px; 
    }
    
    .hm-process-desc { margin: 0; font-size: 1rem; }
    .hm-process-title { font-size: 2rem; margin-bottom: 12px; font-weight: 800; }
    .hm-process-kicker { margin-bottom: 16px; }

    /* Change track into a vertical timeline */
    .hm-process-track {
        display: flex;
        flex-direction: column;
        gap: 32px;
        position: relative;
        padding: 0 10px;
    }

    /* The vertical connecting line */
    .hm-process-track::before {
        content: '';
        position: absolute;
        left: 55px; /* Aligns perfectly with the center of the 90px graphic */
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: rgba(179, 38, 30, 0.15);
        z-index: 0;
    }

    /* Transform cards into simple transparent flow rows */
    .hm-process-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    /* Shrink the graphic and put it on the left */
    .hm-step-graphic {
        width: 90px;
        height: 90px;
        margin: 0;
        flex-shrink: 0;
        background: var(--hm-paper); /* Covers the vertical line behind it */
        border-radius: 50%;
        position: relative;
        z-index: 2;
        padding: 4px; /* Slight padding so the line doesn't peek through */
    }

    /* Remove the huge background numbers on mobile */
    .hm-step-number { display: none; }

    /* Flow the text on the right */
    .hm-step-text {
        flex: 1;
        text-align: left;
        padding-top: 8px; /* Aligns text with the graphic */
    }

    .hm-step-text h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .hm-step-text p {
        font-size: 0.9rem;
    }
}











/* ========================================================================== 
   Home Deals + Premium Store Sections
   ========================================================================== */
.hm-home-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hm-premium-deals { position: relative; isolation: isolate; overflow: hidden; padding: clamp(42px, 6vw, 68px) 0 !important; background: linear-gradient(180deg, #fff8ec, #fffdf8); }
.hm-deals-bg-accent { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, rgba(179,38,30,.045) 1px, transparent 1px), linear-gradient(180deg, rgba(179,38,30,.035) 1px, transparent 1px), radial-gradient(circle at 12% 18%, rgba(229,161,0,.18), transparent 28%), radial-gradient(circle at 86% 72%, rgba(47,111,78,.10), transparent 28%); background-size: 46px 46px, 46px 46px, auto, auto; mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent); }
.hm-deals-bg-accent::before { content: ""; position: absolute; inset: 16px min(4vw, 42px); border: 1px solid rgba(179,38,30,.08); border-radius: 28px; }
.hm-deals-bg-accent::after { content: ""; position: absolute; width: min(360px, 48vw); height: min(360px, 48vw); right: -90px; top: -90px; border-radius: 999px; background: radial-gradient(circle, rgba(179,38,30,.13), transparent 66%); animation: hmAccentDrift 12s ease-in-out infinite; }
.hm-deals-header { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: end; margin-bottom: 22px; }
.hm-header-text p { max-width: 520px; margin: 10px 0 0; color: var(--hm-muted); font-size: .94rem; font-weight: 750; line-height: 1.55; }
.hm-kicker-pill, .hm-home-kicker { display: inline-flex; width: max-content; align-items: center; border: 1px solid rgba(179,38,30,.14); border-radius: 999px; background: rgba(255,255,255,.82); color: var(--hm-spice-red); box-shadow: 0 10px 24px rgba(88,50,26,.08); font-size: .68rem; font-weight: 900; letter-spacing: .08em; line-height: 1; padding: 8px 12px; text-transform: uppercase; backdrop-filter: blur(12px); }
.hm-section-title, .hm-about-copy h2, .hm-home-section-head h2, .hm-reviews-head h2, .hm-faq-copy h2, .hm-contact-panel h2 { margin: 0; color: #171512; font-family: 'Outfit', "Plus Jakarta Sans", sans-serif; font-weight: 900; letter-spacing: 0; line-height: 1.04; }
.hm-section-title { margin-top: 10px; font-size: clamp(1.9rem, 3.8vw, 3.05rem); }
.hm-section-title span { background: linear-gradient(135deg, var(--hm-spice-red), #d97706); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hm-deals-toolbar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.hm-deals-toolbar span { border: 1px solid rgba(42,30,18,.1); border-radius: 999px; background: rgba(255,255,255,.78); color: #5f4632; font-size: .75rem; font-weight: 900; padding: 8px 11px; }
.hm-link-btn, .hm-home-primary, .hm-home-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; border-radius: 999px; font-size: .86rem; font-weight: 900; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.hm-link-btn, .hm-home-secondary { border: 1px solid rgba(42,30,18,.12); background: rgba(255,255,255,.88); color: #2a1e12; padding: 11px 15px; box-shadow: 0 12px 28px rgba(88,50,26,.09); }
.hm-home-primary { border: 0; background: linear-gradient(135deg, #a91f18, #d97706); color: #fff; padding: 12px 18px; box-shadow: 0 16px 34px rgba(179,38,30,.22); }
.hm-link-btn svg { width: 17px; height: 17px; }
.hm-deals-carousel-container { position: relative; z-index: 2; overflow: hidden; padding: 6px 0 12px; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.hm-deals-track { display: flex; gap: 14px; width: max-content; padding: 6px 0 14px; margin: 0; overflow: visible; transform: translate3d(0,0,0); will-change: transform; backface-visibility: hidden; contain: layout paint; }
.hm-deal-card { position: relative; display: grid; grid-template-rows: auto 1fr; flex: 0 0 228px; min-height: 348px; padding: 10px; border: 1px solid rgba(88,50,26,.1); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 18px 40px rgba(88,50,26,.1); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.hm-deal-visual { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1.08; margin-bottom: 10px; overflow: hidden; border: 1px solid rgba(179,38,30,.08); border-radius: 15px; background: white; }
.hm-deal-badge { position: absolute; top: 9px; left: 9px; z-index: 2; border-radius: 999px; background: linear-gradient(135deg, #a91f18, #d97706); color: #fff; font-size: .64rem; font-weight: 900; padding: 6px 8px; }
.hm-deal-img-link { position: relative; z-index: 1; display: grid; place-items: center; width: 100%; height: 100%; }
.hm-deal-img-link img { width: 100%; height: 100%; object-fit: contain; padding: 2px; filter: drop-shadow(0 12px 18px rgba(42,30,18,.12)); transition: transform .3s ease; }
.hm-deal-content { display: flex; flex-direction: column; min-width: 0; padding: 0 2px 2px; }
.hm-deal-weight { align-self: flex-start; margin-bottom: 8px; border: 1px solid rgba(217,119,6,.14); border-radius: 999px; background: #fff6e9; color: #865214; font-size: .68rem; font-weight: 900; line-height: 1; padding: 6px 8px; }
.hm-deal-title { display: -webkit-box; min-height: 2.45em; margin: 0 0 12px; overflow: hidden; color: #171512; font-size: .92rem; font-weight: 900; line-height: 1.24; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.hm-deal-title a { color: inherit; text-decoration: none; }
.hm-deal-action-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.hm-deal-prices { display: grid; gap: 3px; min-width: 0; }
.hm-price-new { color: #171512; font-size: .98rem; font-weight: 900; line-height: 1; }
.hm-price-old { color: #9b8a7c; font-size: .74rem; font-weight: 800; text-decoration: line-through; }
.hm-add-circle { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 999px; background: #171512; color: #fff; text-decoration: none; box-shadow: 0 10px 20px rgba(23,21,18,.16); transition: transform .18s ease, background .18s ease; }
.hm-add-circle svg { width: 16px; height: 16px; }
.hm-home-about { padding: clamp(50px, 7vw, 82px) 0; background: linear-gradient(180deg, #fffdf8, #fff7eb); }
.hm-about-panel { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(18px, 4vw, 44px); align-items: center; padding: clamp(18px, 4vw, 34px); border: 1px solid rgba(88,50,26,.1); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 22px 58px rgba(88,50,26,.1); }
.hm-about-copy { display: grid; gap: 14px; }
.hm-about-copy h2 { font-size: clamp(1.85rem, 4vw, 3.15rem); }
.hm-about-copy p, .hm-home-section-head p, .hm-reviews-head p, .hm-founder-card p, .hm-home-review-card p, .hm-faq-copy p, .hm-faq-item p, .hm-contact-panel p, .hm-footer-brand p, .hm-assurance-card p, .hm-about-step p { margin: 0; color: var(--hm-muted); font-size: .94rem; line-height: 1.58; }
.hm-about-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

.hm-about-step { position: relative; display: grid; gap: 9px; align-content: start; min-height: 188px; padding: 14px; border: 1px solid rgba(88,50,26,.1); border-radius: 20px; background: #fff; box-shadow: 0 14px 32px rgba(88,50,26,.08); }
.hm-about-step span, .hm-assurance-icon, .hm-contact-methods a > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: rgba(179,38,30,.1); color: var(--hm-spice-red); animation: hmIconPulse 3s ease-in-out infinite; }
.hm-about-step:nth-child(2) span, .hm-assurance-icon--gold { background: rgba(229,161,0,.14); color: #b36f00; animation-delay: -.7s; }
.hm-about-step:nth-child(3) span, .hm-assurance-icon--green { background: rgba(47,111,78,.12); color: var(--hm-leaf); animation-delay: -1.4s; }
.hm-about-step:nth-child(4) span, .hm-assurance-icon--dark { background: rgba(23,21,18,.09); color: #171512; animation-delay: -2.1s; }
.hm-about-step svg, .hm-assurance-icon svg, .hm-contact-methods svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hm-about-step strong, .hm-assurance-card strong { color: #171512; font-size: 1rem; font-weight: 900; }
.hm-home-assurance { padding: 22px 0 58px; background: #fff7eb; }
.hm-assurance-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.hm-assurance-card { display: grid; gap: 7px; padding: 18px; border: 1px solid rgba(88,50,26,.1); border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: 0 14px 34px rgba(88,50,26,.08); }
.hm-home-founders { padding: clamp(48px, 7vw, 78px) 0; background: #fffdf8; }
.hm-home-section-head { max-width: 720px; margin-bottom: 26px; }
.hm-home-section-head--center { margin-right: auto; margin-left: auto; text-align: center; }
.hm-home-section-head--center .hm-home-kicker { margin-right: auto; margin-left: auto; }
.hm-home-section-head h2, .hm-reviews-head h2 { margin: 10px 0; font-size: clamp(1.9rem, 4vw, 3.05rem); }
.hm-founder-flow { position: relative; display: grid; gap: 18px; max-width: 920px; margin: 0 auto; padding: 8px 0; }
.hm-founder-flow::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); border-radius: 999px; background: linear-gradient(180deg, transparent, rgba(179,38,30,.32), rgba(229,161,0,.34), rgba(47,111,78,.22), transparent); }
.hm-founder-card { position: relative; display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 14px; align-items: center; width: min(47%, 430px); min-height: 148px; padding: 16px; border: 1px solid rgba(88,50,26,.1); border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 18px 42px rgba(88,50,26,.1); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.hm-founder-card:nth-child(odd) { justify-self: start; text-align: right; grid-template-columns: minmax(0,1fr) 112px; }
.hm-founder-card:nth-child(even) { justify-self: end; }
.hm-founder-card:nth-child(odd) .hm-founder-photo { grid-column: 2; }
.hm-founder-card:nth-child(odd) .hm-founder-body { grid-column: 1; grid-row: 1; justify-items: end; }
.hm-founder-card::before { content: ""; position: absolute; top: 50%; width: 28px; height: 2px; background: rgba(179,38,30,.24); }
.hm-founder-card:nth-child(odd)::before { right: -28px; }
.hm-founder-card:nth-child(even)::before { left: -28px; }
.hm-founder-card::after { content: ""; position: absolute; top: calc(50% - 7px); width: 14px; height: 14px; border: 3px solid #fffdf8; border-radius: 999px; background: linear-gradient(135deg, #b3261e, #d97706); box-shadow: 0 0 0 4px rgba(179,38,30,.12); }
.hm-founder-card:nth-child(odd)::after { right: -35px; }
.hm-founder-card:nth-child(even)::after { left: -35px; }
.hm-founder-photo { position: relative; display: grid; place-items: center; width: 104px; height: 104px; overflow: hidden; border: 4px solid #ffffff; border-radius: 999px; background: linear-gradient(135deg, #a91f18, #d97706); box-shadow: 0 16px 32px rgba(88,50,26,.16); animation: hmFounderPulse 4.8s ease-in-out infinite; }
.hm-founder-card:nth-child(2) .hm-founder-photo { background: linear-gradient(135deg, #1f5b3d, #83a852); animation-delay: -1.4s; }
.hm-founder-card:nth-child(3) .hm-founder-photo { background: linear-gradient(135deg, #2a1e12, #b36f00); animation-delay: -2.8s; }
.hm-founder-photo span { position: relative; z-index: 1; display: grid; place-items: center; width: 100%; height: 100%; color: #ffffff; font-size: 1.38rem; font-weight: 900; }
.hm-founder-photo img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.hm-founder-body { display: grid; align-content: center; gap: 7px; min-width: 0; }
.hm-founder-body > span { width: max-content; max-width: 100%; border-radius: 999px; background: #fff4e6; color: var(--hm-spice-red); font-size: .66rem; font-weight: 900; letter-spacing: .08em; line-height: 1; padding: 7px 9px; text-transform: uppercase; }
.hm-founder-body h3, .hm-home-review-card h3, .hm-home-empty h3 { margin: 0; color: #171512; font-size: 1.08rem; font-weight: 900; line-height: 1.18; }
.hm-founder-body small { width: max-content; max-width: 100%; border-radius: 999px; background: #f7efe3; color: #70451a; font-size: .7rem; font-weight: 900; line-height: 1.35; padding: 6px 9px; }
@keyframes hmFounderPulse { 0%, 100% { transform: translateY(0); box-shadow: 0 16px 32px rgba(88,50,26,.16), 0 0 0 0 rgba(179,38,30,0); } 50% { transform: translateY(-4px); box-shadow: 0 20px 38px rgba(88,50,26,.18), 0 0 0 8px rgba(179,38,30,.07); } }
.hm-home-reviews { padding: clamp(48px, 7vw, 76px) 0; background: linear-gradient(180deg, #fff7eb, #fffdf8); }
.hm-reviews-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.hm-review-score { display: grid; min-width: 126px; gap: 2px; padding: 14px 16px; border: 1px solid rgba(88,50,26,.1); border-radius: 18px; background: #171512; color: #fff; box-shadow: 0 16px 34px rgba(23,21,18,.14); }
.hm-review-score strong { font-size: 2rem; font-weight: 900; line-height: 1; }
.hm-review-score span { color: rgba(255,255,255,.68); font-size: .75rem; font-weight: 850; }
.hm-review-marquee { display: grid; gap: 12px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.hm-review-track { display: flex; width: max-content; gap: 12px; animation: hmReviewMarquee 38s linear infinite; }
.hm-review-track--reverse { animation-direction: reverse; animation-duration: 44s; }
.hm-home-review-card { display: flex; flex-direction: column; flex: 0 0 276px; min-height: 190px; padding: 16px; border: 1px solid rgba(88,50,26,.1); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: 0 14px 34px rgba(88,50,26,.08); }
.hm-home-review-card__head { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; margin-bottom: 8px; }
.hm-review-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; background: linear-gradient(135deg, #b3261e, #d97706); color: #fff; font-weight: 900; }
.hm-home-review-card__head strong { display: block; color: #171512; font-size: .86rem; font-weight: 900; }
.hm-home-review-card__head em { display: block; color: #8a7767; font-size: .7rem; font-style: normal; font-weight: 800; line-height: 1.3; }
.hm-review-stars { width: max-content; color: #d97706; font-size: .82rem; letter-spacing: 0; }
.hm-home-review-card h3 { margin: 9px 0 6px; font-size: .98rem; }
.hm-home-review-card p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
.hm-home-review-card a { width: max-content; max-width: 100%; margin-top: auto; padding-top: 10px; color: var(--hm-spice-red); font-size: .76rem; font-weight: 900; text-decoration: none; }
.hm-home-empty { padding: 22px; border: 1px solid rgba(88,50,26,.1); border-radius: 20px; background: #fff; text-align: center; }
.hm-home-faq { padding: clamp(50px, 7vw, 78px) 0; background: #fff; }
.hm-faq-layout, .hm-contact-layout { display: grid; grid-template-columns: minmax(280px,.42fr) minmax(0,.58fr); gap: clamp(20px, 4vw, 46px); align-items: start; }
.hm-faq-copy, .hm-contact-panel { display: grid; align-content: start; gap: 14px; }
.hm-faq-copy h2, .hm-contact-panel h2 { font-size: clamp(1.9rem, 4vw, 3.05rem); }
.hm-faq-copy .hm-home-primary { width: max-content; margin-top: 4px; }
.hm-faq-list { display: grid; gap: 10px; }
.hm-faq-item { overflow: hidden; border: 1px solid rgba(88,50,26,.1); border-radius: 18px; background: #fff; box-shadow: 0 12px 28px rgba(88,50,26,.07); }
.hm-faq-item summary { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; cursor: pointer; padding: 17px 18px; color: #171512; font-size: .94rem; font-weight: 900; list-style: none; }
.hm-faq-item summary::-webkit-details-marker { display: none; }
.hm-faq-item summary span { color: var(--hm-spice-red); font-size: .72rem; letter-spacing: .08em; }
.hm-faq-item summary::after { content: "+"; color: var(--hm-spice-red); font-size: 1.2rem; line-height: 1; }
.hm-faq-item[open] summary::after { content: "-"; }
.hm-faq-item p { padding: 0 18px 17px 48px; }
.hm-home-contact { padding: clamp(52px, 7vw, 82px) 0; background: radial-gradient(circle at 82% 18%, rgba(229,161,0,.14), transparent 30%), linear-gradient(135deg, #171512, #332116 58%, #171512); color: #fff; }
.hm-contact-panel h2, .hm-contact-panel p, .hm-home-contact .hm-home-kicker { color: #fff; }
.hm-contact-panel p { color: rgba(255,255,255,.72); }
.hm-home-contact .hm-home-kicker { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); box-shadow: none; }
.hm-contact-methods { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.hm-contact-methods a { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; align-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.hm-contact-methods a > span { grid-row: span 2; background: rgba(255,255,255,.12); color: #fff; }
.hm-contact-methods strong { font-size: .78rem; font-weight: 900; }
.hm-contact-methods em { min-width: 0; color: rgba(255,255,255,.72); font-size: .78rem; font-style: normal; font-weight: 800; overflow-wrap: anywhere; }
.hm-contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: clamp(18px, 3vw, 26px); border: 1px solid rgba(88,50,26,.1); border-radius: 24px; background: rgba(255,250,243,.97); box-shadow: 0 18px 42px rgba(23,21,18,.12); }
.hm-contact-form__head, .hm-contact-form__wide, .hm-contact-form__alert, .hm-contact-form button { grid-column: 1 / -1; }
.hm-contact-form__head { display: grid; gap: 4px; }
.hm-contact-form__head strong { color: #171512; font-size: 1.2rem; font-weight: 900; }
.hm-contact-form__head span { color: var(--hm-muted); font-size: .86rem; font-weight: 800; }
.hm-contact-form__alert { border: 1px solid #c8e6cf; border-radius: 14px; padding: 10px 12px; background: #f2faf4; color: #235648; font-size: .84rem; font-weight: 900; }
.hm-contact-form__alert--error { border-color: #efb7af; background: #fff0ee; color: #842b22; }
.hm-contact-form label { display: grid; gap: 7px; color: #3f2b1d; font-size: .78rem; font-weight: 900; }
.hm-contact-form input, .hm-contact-form textarea { width: 100%; border: 1px solid rgba(42,30,18,.12); border-radius: 14px; background: #fff; color: #171512; font: inherit; font-size: .9rem; font-weight: 750; outline: 0; padding: 12px 13px; transition: border-color .16s ease, box-shadow .16s ease; }
.hm-contact-form textarea { min-height: 126px; resize: vertical; }
.hm-contact-form input:focus, .hm-contact-form textarea:focus { border-color: rgba(179,38,30,.4); box-shadow: 0 0 0 4px rgba(179,38,30,.1); }
.hm-home-footer { padding: 34px 0 0; background: #100d0b; color: #fff; }
.hm-footer-top { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1);background-color: white; border-radius: 10px; }
.hm-footer-brand img { width: 138px; height: auto; margin-bottom: 10px; filter: brightness(1.18); }
.hm-footer-brand p { max-width: 460px; color: rgba(0, 0, 0, 0.66); }
.hm-footer-cta { display: grid; gap: 10px; justify-items: end; }
.hm-footer-cta span { color: #000000; font-size: .96rem; font-weight: 900; }
.hm-footer-grid { display: grid; grid-template-columns: minmax(240px,1.2fr) repeat(3,minmax(0,1fr)); gap: 14px; padding: 22px 0 28px; }
.hm-footer-card { display: grid; align-content: start; gap: 8px; min-width: 0; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.045); }
.hm-footer-card strong { color: #fff; font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hm-footer-card a, .hm-footer-card span { color: rgba(255,255,255,.66); font-size: .84rem; line-height: 1.42; text-decoration: none; overflow-wrap: anywhere; }
.hm-footer-card a:hover { color: #fff; }
.hm-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px max(20px, calc((100% - 1180px)/2)); border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.58); font-size: .8rem; font-weight: 800; }
@media (hover: hover) { .hm-link-btn:hover, .hm-home-secondary:hover { border-color: rgba(179,38,30,.28); background: #171512; color: #fff; transform: translateY(-2px); } .hm-home-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 42px rgba(179,38,30,.28); } .hm-deal-card:hover, .hm-founder-card:hover, .hm-home-review-card:hover, .hm-faq-item:hover, .hm-assurance-card:hover, .hm-about-step:hover { transform: translateY(-5px); border-color: rgba(179,38,30,.18); box-shadow: 0 24px 54px rgba(88,50,26,.14); } .hm-deal-card:hover .hm-deal-img-link img { transform: scale(1.04) translateY(-2px); } .hm-add-circle:hover { background: var(--hm-spice-red); transform: translateY(-2px); } .hm-review-marquee:hover .hm-review-track { animation-play-state: paused; } }
@keyframes hmAccentDrift { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-18px,18px,0) scale(1.04); } }
@keyframes hmSoftFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes hmIconPulse { 0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(179,38,30,0); } 50% { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(179,38,30,.1); } }
@keyframes hmReviewMarquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (max-width: 991.98px) { .hm-home-shell { width: min(100% - 28px, 760px); } .hm-deals-header { grid-template-columns: 1fr; align-items: start; } .hm-deals-toolbar { justify-content: flex-start; } .hm-link-btn { width: 100%; } .hm-deals-carousel-container, .hm-review-marquee { mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); } .hm-deal-card { flex-basis: 218px; min-height: 336px; } .hm-about-panel, .hm-faq-layout, .hm-contact-layout { grid-template-columns: 1fr; } .hm-about-flow, .hm-assurance-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .hm-about-flow::before { display: none; } .hm-founder-flow { max-width: 720px; padding-left: 26px; } .hm-founder-flow::before { left: 12px; transform: none; } .hm-founder-card, .hm-founder-card:nth-child(odd), .hm-founder-card:nth-child(even) { width: 100%; justify-self: stretch; grid-template-columns: 96px minmax(0,1fr); text-align: left; } .hm-founder-card:nth-child(odd) .hm-founder-photo, .hm-founder-card:nth-child(even) .hm-founder-photo { grid-column: 1; } .hm-founder-card:nth-child(odd) .hm-founder-body, .hm-founder-card:nth-child(even) .hm-founder-body { grid-column: 2; grid-row: 1; justify-items: start; } .hm-founder-card::before { left: -27px !important; right: auto !important; width: 27px; } .hm-founder-card::after { left: -34px !important; right: auto !important; } .hm-founder-photo { width: 92px; height: 92px; } .hm-reviews-head { align-items: flex-start; flex-direction: column; } .hm-review-track--reverse { display: none; } .hm-footer-top { grid-template-columns: 1fr; } .hm-footer-cta { justify-items: stretch; } .hm-footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .hm-footer-card--wide { grid-column: 1 / -1; } }
@media (max-width: 575.98px) { .hm-home-shell { width: calc(100% - 22px); } .hm-premium-deals { padding-top: 36px !important; padding-bottom: 38px !important; } .hm-section-title, .hm-about-copy h2, .hm-home-section-head h2, .hm-reviews-head h2, .hm-faq-copy h2, .hm-contact-panel h2 { font-size: clamp(1.65rem, 9vw, 2.25rem); } .hm-header-text p, .hm-about-copy p, .hm-home-section-head p, .hm-reviews-head p, .hm-founder-card p, .hm-home-review-card p, .hm-faq-copy p, .hm-faq-item p, .hm-contact-panel p, .hm-footer-brand p, .hm-assurance-card p, .hm-about-step p { font-size: .88rem; line-height: 1.52; } .hm-deals-track { gap: 10px; } .hm-deal-card { flex-basis: 190px; min-height: 318px; padding: 9px; border-radius: 16px; } .hm-deal-visual { border-radius: 13px; } .hm-deal-title { font-size: .86rem; } .hm-price-new { font-size: .9rem; } .hm-add-circle { width: 34px; height: 34px; flex-basis: 34px; } .hm-about-panel { padding: 14px; border-radius: 22px; } .hm-about-actions, .hm-home-primary, .hm-home-secondary, .hm-faq-copy .hm-home-primary { width: 100%; } .hm-about-flow, .hm-assurance-grid { grid-template-columns: 1fr; } .hm-about-step { min-height: 0; grid-template-columns: auto 1fr; align-items: center; } .hm-about-step p { grid-column: 2; } .hm-home-assurance { padding-bottom: 42px; } .hm-founder-flow { gap: 14px; padding-left: 22px; } .hm-founder-card, .hm-founder-card:nth-child(odd), .hm-founder-card:nth-child(even) { grid-template-columns: 72px minmax(0,1fr); min-height: 118px; padding: 12px; border-radius: 18px; } .hm-founder-photo { width: 72px; height: 72px; border-width: 3px; } .hm-founder-body, .hm-assurance-card, .hm-home-review-card, .hm-home-empty { padding: 15px; } .hm-home-review-card { flex-basis: 248px; min-height: 178px; } .hm-review-score { min-width: 112px; } .hm-contact-methods, .hm-contact-form { grid-template-columns: 1fr; } .hm-contact-form { padding: 16px; border-radius: 20px; } .hm-faq-item summary { padding: 15px; font-size: .88rem; } .hm-faq-item p { padding: 0 15px 15px 42px; } .hm-footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; } .hm-footer-card { padding: 13px; border-radius: 15px; } .hm-footer-card--wide { grid-column: 1 / -1; } .hm-footer-bottom { align-items: flex-start; flex-direction: column; padding-right: 12px; padding-left: 12px; } }

/* Final homepage alignment refinements */
.hm-footer-top {
    padding: 18px;
    border: 1px solid rgba(88, 50, 26, 0.1);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hm-footer-top .hm-footer-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.hm-footer-top .hm-footer-brand img {
    margin: 0;
    filter: none;
}

.hm-footer-top .hm-footer-brand p,
.hm-footer-cta span {
    color: #3f2b1d;
}

.hm-footer-cta {
    align-items: center;
}

/* Policy pages */
.hm-policy-page {
    width: min(100% - 28px, 960px);
    margin: 0 auto;
    padding: 20px 0 84px;
}

.hm-policy-hero {
    margin-bottom: 14px;
    border: 1px solid rgba(179, 38, 30, 0.14);
    border-radius: 18px;
    padding: clamp(18px, 4vw, 30px);
    background: linear-gradient(135deg, rgba(179, 38, 30, 0.08), rgba(255, 248, 232, 0.96) 48%, #ffffff);
    box-shadow: 0 12px 32px rgba(20, 24, 31, 0.06);
}

.hm-policy-hero span,
.hm-policy-card h2 {
    color: #b3261e;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-policy-hero h1 {
    margin: 6px 0;
    color: #15171a;
    font-size: clamp(1.65rem, 5vw, 2.55rem);
    font-weight: 950;
    line-height: 1.08;
}

.hm-policy-hero p,
.hm-policy-card p {
    margin: 0;
    color: #68707a;
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.65;
}

.hm-policy-card {
    display: grid;
    gap: 10px;
    border: 1px solid #e7eaef;
    border-radius: 18px;
    padding: clamp(18px, 4vw, 28px);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.hm-policy-card h2 {
    margin: 14px 0 0;
}

.hm-policy-card h2:first-child {
    margin-top: 0;
}

.hm-policy-card a {
    color: #f3b685;
    font-weight: 900;
    text-decoration: none;
}

.hm-policy-card a:hover,
.hm-policy-card a:focus {
    text-decoration: underline;
}

.hm-review-avatar {
    overflow: hidden;
    background: #fff4e6;
    color: var(--hm-spice-red);
}

.hm-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-home-review-card {
    min-height: 176px;
}

.hm-home-review-card__head {
    grid-template-columns: 44px minmax(0, 1fr);
}

.hm-review-avatar {
    width: 44px;
    height: 44px;
}

/* Reviews page */
.hm-reviews-body {
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.12), transparent 32vw),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 42%, #fff8ea 100%);
}

.hm-reviews-page {
    width: min(100% - 28px, 1160px);
    margin: 0 auto;
    padding: 20px 0 84px;
}

.hm-reviews-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 22px;
    border: 1px solid rgba(179, 38, 30, 0.14);
    border-radius: 24px;
    padding: clamp(18px, 4vw, 34px);
    background: linear-gradient(135deg, rgba(179, 38, 30, 0.08), rgba(255, 255, 255, 0.96) 48%, rgba(255, 248, 232, 0.98));
    box-shadow: 0 18px 48px rgba(88, 50, 26, 0.09);
}

.hm-reviews-hero h1 {
    max-width: 760px;
    margin: 10px 0;
    color: #171512;
    font-family: 'Outfit', "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.45rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.03;
}

.hm-reviews-hero p,
.hm-review-page-card p,
.hm-reviews-empty p {
    margin: 0;
    color: var(--hm-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.hm-reviews-summary {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 6px;
    border: 1px solid rgba(88, 50, 26, 0.1);
    border-radius: 20px;
    padding: 20px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 14px 34px rgba(88, 50, 26, 0.08);
}

.hm-reviews-summary strong {
    color: #171512;
    font-size: 2.7rem;
    font-weight: 950;
    line-height: 1;
}

.hm-reviews-summary p {
    color: #8a7767;
    font-size: 0.82rem;
    font-weight: 900;
}

.hm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hm-review-page-card {
    display: flex;
    flex-direction: column;
    min-height: 310px;
    border: 1px solid rgba(88, 50, 26, 0.1);
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(88, 50, 26, 0.08);
}

.hm-review-page-card__head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.hm-review-page-card__head .hm-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    font-weight: 950;
}

.hm-review-page-card__head strong,
.hm-review-page-card h2 {
    color: #171512;
    font-weight: 950;
}

.hm-review-page-card__head strong {
    display: block;
    font-size: 0.92rem;
}

.hm-review-page-card__head a,
.hm-review-page-card__head time {
    display: block;
    overflow: hidden;
    color: #8a7767;
    font-size: 0.74rem;
    font-weight: 850;
    line-height: 1.35;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hm-review-page-card__head a {
    color: var(--hm-spice-red);
}

.hm-review-page-card h2 {
    margin: 10px 0 7px;
    font-size: 1.08rem;
    line-height: 1.22;
}

.hm-review-page-card__photos {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.hm-review-page-card__photos a {
    flex: 0 0 78px;
    height: 78px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff4e6;
}

.hm-review-page-card__photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-review-page-card__link {
    width: max-content;
    max-width: 100%;
    margin-top: auto;
    padding-top: 14px;
    color: var(--hm-spice-red);
    font-size: 0.78rem;
    font-weight: 950;
    text-decoration: none;
}

.hm-reviews-empty {
    display: grid;
    justify-items: center;
    gap: 12px;
    border: 1px solid rgba(88, 50, 26, 0.1);
    border-radius: 22px;
    padding: clamp(24px, 5vw, 44px);
    background: #ffffff;
    text-align: center;
    box-shadow: 0 14px 34px rgba(88, 50, 26, 0.08);
}

.hm-reviews-empty h2 {
    margin: 0;
    color: #171512;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 950;
}

.hm-reviews-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.hm-reviews-pagination a,
.hm-reviews-pagination span,
.hm-reviews-pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid rgba(88, 50, 26, 0.12);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.94);
    color: #2a1e12;
    font-size: 0.84rem;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(88, 50, 26, 0.08);
}

.hm-reviews-pagination strong {
    border-color: transparent;
    background: linear-gradient(135deg, #a91f18, #d97706);
    color: #fff;
}

.hm-reviews-pagination span {
    opacity: 0.5;
}

@media (max-width: 991.98px) {
    .hm-home-about {
        padding-bottom: 38px;
    }

    .hm-home-assurance,
    .hm-home-founders,
    .hm-home-reviews,
    .hm-home-faq {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .hm-footer-top .hm-footer-brand {
        grid-template-columns: 1fr;
    }

    .hm-reviews-hero,
    .hm-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hm-reviews-summary {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hm-home-about {
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .hm-home-assurance {
        padding-top: 22px;
        padding-bottom: 30px;
    }

    .hm-home-founders,
    .hm-home-reviews,
    .hm-home-faq {
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .hm-home-section-head {
        margin-bottom: 18px;
    }

    .hm-founder-flow {
        padding-left: 22px;
    }

    .hm-founder-flow::before {
        left: 10px;
    }

    .hm-founder-card::before {
        left: -23px !important;
        width: 23px;
    }

    .hm-founder-card::after {
        left: -29px !important;
    }

    .hm-founder-photo {
        width: 72px;
        height: 72px;
    }

    .hm-founder-body {
        gap: 6px;
    }

    .hm-review-marquee {
        gap: 9px;
    }

    .hm-review-track {
        gap: 9px;
    }

    .hm-home-review-card {
        flex-basis: 224px;
        min-height: 162px;
        padding: 13px;
    }

    .hm-home-review-card__head {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .hm-review-avatar {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .hm-reviews-page {
        width: calc(100% - 22px);
        padding-top: 12px;
    }

    .hm-reviews-hero,
    .hm-review-page-card {
        border-radius: 18px;
    }

    .hm-review-page-card {
        min-height: 0;
        padding: 15px;
    }

    .hm-home-review-card h3 {
        margin: 7px 0 5px;
        font-size: 0.92rem;
    }

    .hm-footer-top {
        padding: 14px;
        border-radius: 18px;
    }

    .hm-footer-cta {
        justify-items: stretch;
    }
}

.hm-notification-button {
    position: relative;
}

.hm-notification-button [data-hm-notification-count] {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #b3261e;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}

.hm-notification-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.hm-notification-modal.is-open {
    display: block;
}

.hm-notification-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(21, 23, 26, 0.46);
}

.hm-notification-modal__panel {
    position: absolute;
    top: 82px;
    right: max(16px, calc((100vw - 1180px) / 2));
    width: min(420px, calc(100vw - 24px));
    max-height: min(680px, calc(100vh - 110px));
    overflow: hidden;
    border: 1px solid #e4e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(21, 23, 26, 0.22);
}

.hm-notification-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid #edf0f3;
}

.hm-notification-modal__head span {
    display: block;
    color: #b3261e;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-notification-modal__head h2 {
    margin: 3px 0 0;
    font-size: 1.15rem;
}

.hm-notification-modal__actions {
    display: flex;
    justify-content: flex-end;
    padding: 10px 14px;
    border-bottom: 1px solid #edf0f3;
}

.hm-notification-modal__actions button {
    border: 0;
    background: transparent;
    color: #b3261e;
    font-weight: 900;
    cursor: pointer;
}

.hm-notification-list {
    max-height: 480px;
    overflow: auto;
    padding: 8px;
}

.hm-notification-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 10px;
    background: #fff7f5;
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.hm-notification-item + .hm-notification-item {
    margin-top: 8px;
}

.hm-notification-item.is-read {
    background: #f8faf7;
    opacity: 0.78;
}

.hm-notification-item__icon {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    color: #b3261e;
    font-size: 0.72rem;
    font-weight: 900;
}

.hm-notification-item__body,
.hm-notification-item__body span {
    display: grid;
    gap: 4px;
}

.hm-notification-item__body b {
    font-size: 0.95rem;
}

.hm-notification-item__body strong {
    width: max-content;
    padding: 2px 7px;
    border-radius: 999px;
    background: #b3261e;
    color: #fff;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.hm-notification-item__body em,
.hm-notification-item__body small {
    color: #68707a;
    font-style: normal;
    line-height: 1.45;
}

.hm-notification-empty {
    padding: 26px 16px;
    color: #68707a;
    text-align: center;
}

@media (max-width: 575.98px) {
    .hm-policy-page {
        width: calc(100% - 20px);
        padding-top: 12px;
        padding-bottom: 92px;
    }

    .hm-policy-hero,
    .hm-policy-card {
        border-radius: 14px;
        padding: 16px;
    }

    .hm-policy-card p {
        font-size: 0.88rem;
    }

    .hm-notification-modal__panel {
        top: auto;
        right: 8px;
        bottom: 8px;
        left: 8px;
        width: auto;
        max-height: calc(100vh - 88px);
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .hm-search-dropdown {
        position: absolute;
        top: calc(100% + 0px);
        
        width: auto;
        height: calc(98dvh - 170px - env(safe-area-inset-bottom));
        max-height: none;
        overflow-y: auto;
        border-radius: 0 0 1px 1px;
        box-shadow: 0 18px 42px rgba(23, 29, 23, 0.18);
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    body.hm-header-compact .hm-search-dropdown {
        height: calc(100dvh - 160px - env(safe-area-inset-bottom));
    }

    .hm-search-result {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 9px;
        padding: 9px;
    }

    .hm-search-result img {
        width: 52px;
        height: 52px;
    }

    .hm-search-result__go {
        grid-column: 2;
        width: max-content;
        min-width: 38px;
        height: 28px;
        padding: 0 12px;
    }
}

.hm-blog-page,
.hm-blog-detail-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 96px;
}

.hm-blog-hero,
.hm-blog-featured,
.hm-blog-article,
.hm-blog-related {
    background: #fff;
    border: 1px solid #edf0e8;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(33, 38, 28, 0.08);
}

.hm-blog-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    background: linear-gradient(135deg, #fff8ea, #fff);
}

.hm-blog-hero span,
.hm-blog-featured__copy span,
.hm-blog-card__body span,
.hm-blog-article__head span,
.hm-blog-related > div > span {
    color: #b3261e;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-blog-hero h1,
.hm-blog-featured__copy h2,
.hm-blog-article__head h1,
.hm-blog-related h2 {
    margin: 7px 0 10px;
    color: #171b14;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

.hm-blog-hero h1 {
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.hm-blog-hero p,
.hm-blog-featured__copy p,
.hm-blog-card__body p,
.hm-blog-article__head p,
.hm-blog-article__content p {
    color: #66705f;
    line-height: 1.7;
}

.hm-blog-hero a,
.hm-blog-read-link,
.hm-blog-product-note a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #b3261e;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.hm-blog-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 0;
    margin-top: 22px;
    overflow: hidden;
}

.hm-blog-featured__media,
.hm-blog-card__image {
    display: block;
    background: #f4f0e8;
}

.hm-blog-featured__media img,
.hm-blog-card__image img,
.hm-blog-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-blog-featured__copy {
    padding: 30px;
}

.hm-blog-featured__copy h2 a,
.hm-blog-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

.hm-blog-featured__copy > div,
.hm-blog-card__body > div,
.hm-blog-article__head > div {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 14px 0;
    color: #7a8373;
    font-size: 0.84rem;
    font-weight: 800;
}

.hm-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.hm-blog-grid--compact {
    margin-top: 14px;
}

.hm-blog-card {
    overflow: hidden;
    border: 1px solid #edf0e8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(33, 38, 28, 0.07);
}

.hm-blog-card__image {
    height: 220px;
}

.hm-blog-card__body {
    padding: 20px;
}

.hm-blog-card__body h2 {
    margin: 8px 0;
    color: #171b14;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.25;
}

.hm-blog-breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: #7a8373;
    font-size: 0.88rem;
    font-weight: 800;
}

.hm-blog-breadcrumb a {
    color: #b3261e;
    text-decoration: none;
}

.hm-blog-article {
    padding: 30px;
}

.hm-blog-article__head {
    max-width: 820px;
}

.hm-blog-article__head h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
}

.hm-blog-article__image {
    height: min(460px, 52vw);
    margin: 24px 0;
    border-radius: 16px;
}

.hm-blog-article__content {
    max-width: 820px;
}

.hm-blog-article__content h2 {
    margin: 26px 0 8px;
    color: #171b14;
    font-size: 1.35rem;
    font-weight: 900;
}

.hm-blog-product-note {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #f0dac2;
    border-radius: 14px;
    background: #fff8ea;
}

.hm-blog-product-note strong {
    display: block;
    color: #171b14;
    font-size: 1.05rem;
    font-weight: 900;
}

.hm-blog-related {
    margin-top: 22px;
    padding: 24px;
}

@media (max-width: 767.98px) {
    .hm-blog-page,
    .hm-blog-detail-page {
        width: calc(100% - 20px);
        padding-top: 12px;
    }

    .hm-blog-hero,
    .hm-blog-featured,
    .hm-blog-grid {
        display: block;
    }

    .hm-blog-hero,
    .hm-blog-article,
    .hm-blog-related {
        padding: 18px;
        border-radius: 14px;
    }

    .hm-blog-hero a {
        margin-top: 12px;
    }

    .hm-blog-featured__media,
    .hm-blog-card__image {
        height: 190px;
    }

    .hm-blog-featured__copy,
    .hm-blog-card__body {
        padding: 18px;
    }

    .hm-blog-card {
        margin-top: 14px;
    }

    .hm-blog-article__image {
        height: 230px;
    }
}
