:root {
    --hb-black: #000000;
    --hb-white: #ffffff;
    --hb-cream: #fff6fa;
    --hb-blush: #ffd9e8;
    --hb-soft: #fff2f7;
    --hb-border: #f0ccd9;
    --hb-text: #21141a;
    --hb-muted: #74646b;
    --hb-accent: #ef4d8d;
    --hb-accent-dark: #c21f68;
    --hb-ink: #271018;
    --hb-shadow: 0 18px 50px rgba(194, 31, 104, 0.13);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--hb-white);
    color: var(--hb-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.hb-container {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.hb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--hb-white);
    border-bottom: 1px solid var(--hb-border);
}

.hb-promo-slider {
    height: 36px;
    background: var(--hb-black);
    color: var(--hb-white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hb-promo-track {
    display: flex;
    min-width: max-content;
    animation: hbPromo 26s linear infinite;
}

.hb-promo-track span {
    padding: 0 52px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes hbPromo {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hb-mainbar {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 0 26px;
}

.hb-logo {
    justify-self: center;
    text-align: center;
}

.hb-logo span {
    display: block;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1;
    letter-spacing: -.08em;
    font-weight: 1000;
    color: var(--hb-black);
}

.hb-primary-nav,
.hb-header-actions,
.hb-category-nav {
    display: flex;
    align-items: center;
}

.hb-primary-nav {
    gap: 24px;
}

.hb-primary-nav a,
.hb-category-nav a,
.hb-icon-link,
.hb-cart-link {
    color: var(--hb-black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hb-primary-nav a:hover,
.hb-category-nav a:hover,
.hb-icon-link:hover,
.hb-cart-link:hover {
    color: var(--hb-accent-dark);
}

.hb-header-actions {
    justify-content: flex-end;
    gap: 18px;
}

.hb-search {
    height: 42px;
    width: min(320px, 28vw);
    display: grid;
    grid-template-columns: 1fr 42px;
    border-bottom: 1px solid var(--hb-black);
}

.hb-search input {
    border: 0;
    outline: 0;
    padding: 0 8px;
    color: var(--hb-black);
    background: transparent;
    font-size: 13px;
}

.hb-search button {
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.hb-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hb-cart-link b {
    min-width: 21px;
    height: 21px;
    border-radius: 999px;
    background: var(--hb-black);
    color: var(--hb-white);
    display: grid;
    place-items: center;
    font-size: 11px;
}

.hb-category-nav {
    justify-content: center;
    gap: 34px;
    min-height: 48px;
    padding: 0 18px;
    border-top: 1px solid var(--hb-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.hb-category-nav::-webkit-scrollbar {
    display: none;
}

.hb-menu-trigger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hb-mobile-search,
.hb-mobile-drawer,
.hb-drawer-overlay {
    display: none;
}

.hb-hero {
    background: var(--hb-soft);
}

.hb-hero-link {
    position: relative;
    display: block;
    min-height: clamp(480px, 72vh, 760px);
    overflow: hidden;
}

.hb-hero img {
    width: 100%;
    height: clamp(480px, 72vh, 760px);
    object-fit: cover;
}

.hb-hero-content {
    position: absolute;
    left: 50%;
    bottom: 46px;
    transform: translateX(-50%);
    width: min(620px, calc(100% - 28px));
    text-align: center;
    color: var(--hb-white);
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.hb-hero-content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 92px);
    line-height: .9;
    font-weight: 1000;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.hb-hero-content p {
    margin: 13px 0 20px;
    font-size: 16px;
    font-weight: 700;
}

.hb-hero-content span {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    background: var(--hb-white);
    color: var(--hb-black);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hb-section {
    padding: 58px 0;
}

.hb-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.hb-section-head h2,
.hb-section-tabs button {
    margin: 0;
    color: var(--hb-black);
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.hb-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hb-category-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--hb-soft);
}

.hb-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hb-category-card:hover img {
    transform: scale(1.045);
}

.hb-category-card strong {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .92);
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 0 14px;
    text-align: center;
    color: var(--hb-black);
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hb-product-section {
    border-top: 1px solid var(--hb-border);
    border-bottom: 1px solid var(--hb-border);
    background: var(--hb-white);
}

.hb-section-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 58px);
    padding: 0 18px 34px;
    overflow-x: auto;
}

.hb-section-tabs button {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #b4aaa5;
    white-space: nowrap;
    font-size: clamp(25px, 4vw, 48px);
}

.hb-section-tabs button.active {
    color: var(--hb-black);
    text-decoration: underline;
    text-underline-offset: 8px;
}

.hb-tab-panel {
    display: none;
}

.hb-tab-panel.active {
    display: block;
}

.hb-product-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 23%;
    gap: 18px;
    overflow-x: auto;
    padding: 0 28px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.hb-product-card {
    scroll-snap-align: start;
    min-width: 0;
}

.hb-product-media {
    position: relative;
    display: block;
    background: var(--hb-soft);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.hb-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hb-product-card:hover .hb-product-media img {
    transform: scale(1.035);
}

.hb-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--hb-white);
    color: var(--hb-black);
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hb-product-content {
    text-align: center;
    padding: 15px 6px 0;
}

.hb-product-content h3 {
    min-height: 42px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--hb-black);
}

.hb-product-price {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 900;
    color: var(--hb-black);
}

.hb-size-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.hb-size-pill {
    position: relative;
}

.hb-size-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hb-size-pill span {
    min-width: 36px;
    height: 30px;
    border: 1px solid var(--hb-border);
    display: grid;
    place-items: center;
    padding: 0 9px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 1000;
    color: var(--hb-black);
    background: var(--hb-white);
}

.hb-size-pill input:checked + span {
    background: var(--hb-black);
    color: var(--hb-white);
    border-color: var(--hb-black);
}

.hb-add-btn {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--hb-black);
    background: var(--hb-black);
    color: var(--hb-white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .2s ease;
}

.hb-add-btn:hover {
    background: var(--hb-white);
    color: var(--hb-black);
}

.hb-add-btn.disabled {
    opacity: .5;
    cursor: not-allowed;
}

.hb-editorial {
    padding: 0;
}

.hb-editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hb-editorial-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    color: var(--hb-white);
}

.hb-editorial-card img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    filter: brightness(.78);
    transition: transform .4s ease;
}

.hb-editorial-card:hover img {
    transform: scale(1.035);
}

.hb-editorial-card div {
    position: absolute;
    left: 32px;
    bottom: 32px;
}

.hb-editorial-card h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3.1vw, 46px);
    line-height: .95;
    font-weight: 1000;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.hb-editorial-card span {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 26px;
    background: var(--hb-white);
    color: var(--hb-black);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
}

.hb-collection-hero {
    padding: 52px 16px;
    text-align: center;
    background: var(--hb-soft);
    border-bottom: 1px solid var(--hb-border);
}

.hb-collection-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 88px);
    line-height: .9;
    font-weight: 1000;
    letter-spacing: -.08em;
}

.hb-collection-hero p {
    margin: 14px 0 0;
    color: var(--hb-muted);
    font-weight: 700;
}

.hb-shop-section {
    padding: 36px 0 70px;
}

.hb-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.hb-filter-btn,
.hb-shop-search button,
.hb-filter-form button,
.hb-empty a,
.hb-newsletter button {
    min-height: 44px;
    border: 1px solid var(--hb-black);
    background: var(--hb-black);
    color: var(--hb-white);
    padding: 0 22px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hb-shop-search {
    width: min(420px, 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--hb-black);
}

.hb-shop-search input {
    border: 0;
    outline: 0;
    padding: 0 12px;
    font-weight: 800;
}

.hb-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 18px;
}

.hb-filter-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(390px, 92vw);
    z-index: 200;
    background: var(--hb-white);
    transform: translateX(-100%);
    transition: .25s ease;
    padding: 22px;
    overflow-y: auto;
}

body.filter-open .hb-filter-drawer {
    transform: translateX(0);
}

.hb-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(0,0,0,.48);
    display: none;
}

body.filter-open .hb-filter-overlay {
    display: block;
}

.hb-filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.hb-filter-head strong {
    font-size: 22px;
    font-weight: 1000;
    letter-spacing: -.04em;
}

.hb-filter-head button {
    width: 38px;
    height: 38px;
    border: 0;
    background: var(--hb-soft);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.hb-filter-form {
    display: grid;
    gap: 18px;
}

.hb-filter-form label {
    display: grid;
    gap: 8px;
}

.hb-filter-form span {
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hb-filter-form input,
.hb-filter-form select {
    min-height: 46px;
    border: 1px solid var(--hb-border);
    padding: 0 12px;
    outline: 0;
}

.hb-filter-form a {
    min-height: 44px;
    border: 1px solid var(--hb-black);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
}

.hb-pagination {
    margin-top: 32px;
}

.hb-pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hb-page-link,
.hb-page-ellipsis {
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--hb-border);
    display: inline-grid;
    place-items: center;
    padding: 0 13px;
    color: var(--hb-ink);
    background: var(--hb-white);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hb-page-link {
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.hb-page-link:hover,
.hb-page-link.active {
    border-color: var(--hb-accent-dark);
    background: var(--hb-accent-dark);
    color: var(--hb-white);
}

.hb-page-link.disabled,
.hb-page-link.disabled:hover {
    cursor: not-allowed;
    opacity: .42;
    border-color: var(--hb-border);
    background: var(--hb-white);
    color: var(--hb-muted);
}

.hb-page-ellipsis {
    border-color: transparent;
    background: transparent;
    color: var(--hb-muted);
}

.hb-empty {
    padding: 70px 18px;
    text-align: center;
    background: var(--hb-soft);
}

.hb-empty h2 {
    margin: 0 0 8px;
    font-size: 34px;
    letter-spacing: -.04em;
}

.hb-empty p {
    color: var(--hb-muted);
}

.hb-empty a {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
}

.hb-alert-wrap {
    padding-top: 18px;
}

.hb-alert {
    padding: 14px 16px;
    font-weight: 800;
}

.hb-alert.success {
    background: rgba(7, 150, 105, .1);
    color: #047857;
}

.hb-alert.error {
    background: rgba(220, 38, 38, .1);
    color: #dc2626;
}

.hb-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 300;
    min-width: 260px;
    max-width: calc(100vw - 36px);
    padding: 14px 16px;
    background: var(--hb-black);
    color: var(--hb-white);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: .25s ease;
    font-weight: 900;
}

.hb-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.hb-footer {
    background: var(--hb-black);
    color: var(--hb-white);
    padding: 54px 0 24px;
}

.hb-newsletter {
    text-align: center;
    margin-bottom: 46px;
}

.hb-newsletter h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 64px);
    line-height: .9;
    font-weight: 1000;
    letter-spacing: -.08em;
}

.hb-newsletter p {
    color: rgba(255,255,255,.66);
    margin: 14px 0 22px;
}

.hb-newsletter form {
    width: min(560px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    background: var(--hb-white);
}

.hb-newsletter input {
    border: 0;
    outline: 0;
    padding: 0 16px;
    min-height: 50px;
    font-weight: 800;
}

.hb-newsletter button {
    background: var(--hb-white);
    color: var(--hb-black);
    border-color: var(--hb-white);
    border-left-color: var(--hb-black);
}

.hb-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.hb-footer h3,
.hb-footer h4 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 1000;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hb-footer p,
.hb-footer a {
    display: block;
    color: rgba(255,255,255,.64);
    line-height: 1.8;
    font-size: 14px;
}

.hb-footer a {
    margin-bottom: 8px;
}

.hb-footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.44);
    font-size: 13px;
}

@media (max-width: 1120px) {
    .hb-product-carousel {
        grid-auto-columns: 30%;
    }

    .hb-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hb-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hb-editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .hb-desktop-nav,
    .hb-desktop-search,
    .hb-desktop-only {
        display: none;
    }

    .hb-menu-trigger {
        display: grid;
        place-items: center;
    }

    .hb-mainbar {
        grid-template-columns: 44px 1fr auto;
        min-height: 68px;
        padding: 0 14px;
    }

    .hb-logo {
        justify-self: center;
    }

    .hb-logo span {
        font-size: 25px;
    }

    .hb-header-actions {
        gap: 0;
    }

    .hb-mobile-search {
        display: block;
        padding: 0 14px 12px;
    }

    .hb-mobile-search .hb-search {
        width: 100%;
        border: 1px solid var(--hb-border);
        padding-left: 8px;
    }

    .hb-mobile-drawer {
        display: block;
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 420;
        width: min(360px, 90vw);
        max-width: 100vw;
        background: var(--hb-white);
        transform: translateX(-100%);
        transition: .25s ease;
        padding: 18px;
        overflow-y: auto;
        overscroll-behavior: contain;
        box-shadow: 24px 0 70px rgba(39, 16, 24, .2);
    }

    body.menu-open .hb-mobile-drawer {
        transform: translateX(0);
    }

    .hb-drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 410;
        background: rgba(0,0,0,.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    body.menu-open .hb-drawer-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .hb-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .hb-mobile-drawer-head strong {
        font-size: 22px;
        font-weight: 1000;
        letter-spacing: -.04em;
    }

    .hb-mobile-drawer-head button {
        width: 38px;
        height: 38px;
        border: 0;
        background: var(--hb-soft);
        font-size: 28px;
        cursor: pointer;
    }

    .hb-mobile-drawer a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--hb-border);
        font-size: 13px;
        font-weight: 1000;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .hb-drawer-title {
        margin-top: 22px;
        padding-bottom: 8px;
        color: var(--hb-muted);
        font-size: 11px;
        font-weight: 1000;
        letter-spacing: .18em;
        text-transform: uppercase;
    }

    .hb-hero-link,
    .hb-hero img {
        min-height: 520px;
        height: 520px;
    }

    .hb-product-carousel {
        grid-auto-columns: 48%;
        padding-inline: 14px;
    }

    .hb-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px;
    }

    .hb-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .hb-shop-search {
        width: 100%;
    }

    .hb-editorial-grid,
    .hb-footer-grid {
        grid-template-columns: 1fr;
    }

    .hb-editorial-card,
    .hb-editorial-card img {
        min-height: 460px;
    }
}

@media (max-width: 520px) {
    .hb-container {
        width: min(100% - 24px, 1280px);
    }

    .hb-promo-track span {
        padding: 0 34px;
    }

    .hb-cart-link span {
        display: none;
    }

    .hb-hero-content {
        bottom: 30px;
    }

    .hb-hero-content h1 {
        font-size: 46px;
    }

    .hb-section {
        padding: 42px 0;
    }

    .hb-category-grid {
        grid-template-columns: 1fr;
    }

    .hb-product-carousel {
        grid-auto-columns: 78%;
    }

    .hb-product-content h3 {
        font-size: 14px;
    }

    .hb-section-tabs {
        justify-content: flex-start;
    }

    .hb-newsletter form {
        grid-template-columns: 1fr;
    }

    .hb-newsletter button {
        border-left: 0;
        border-top: 1px solid var(--hb-black);
    }
}

/* Premium pink storefront refresh */
.hb-header {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(239, 77, 141, .22);
}

.hb-promo-slider {
    height: 32px;
    background: var(--hb-ink);
}

.hb-promo-track span {
    color: #ffe5ef;
    font-size: 10px;
    letter-spacing: .11em;
}

.hb-mainbar {
    min-height: 70px;
}

.hb-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
}

.hb-logo img,
.hb-footer-logo img {
    width: auto;
    max-width: 174px;
    max-height: 58px;
    object-fit: contain;
}

.hb-logo span,
.hb-footer-logo span {
    color: var(--hb-accent-dark);
    font-size: clamp(20px, 3vw, 32px);
    letter-spacing: 0;
    font-weight: 1000;
}

.hb-primary-nav a,
.hb-category-nav a,
.hb-icon-link,
.hb-cart-link {
    color: var(--hb-ink);
    font-size: 10.5px;
    letter-spacing: .1em;
}

.hb-primary-nav a:hover,
.hb-category-nav a:hover,
.hb-icon-link:hover,
.hb-cart-link:hover {
    color: var(--hb-accent-dark);
}

.hb-premium-icon,
.hb-cart-link.hb-premium-icon,
.hb-menu-trigger.hb-premium-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(239, 77, 141, .24);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #fff6fa);
    color: var(--hb-accent-dark);
    display: inline-grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(239, 77, 141, .11);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hb-premium-icon:hover {
    transform: translateY(-1px);
    border-color: rgba(239, 77, 141, .52);
    box-shadow: 0 14px 32px rgba(239, 77, 141, .17);
}

.hb-cart-link b {
    position: absolute;
    top: -5px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    background: var(--hb-accent);
    color: var(--hb-white);
    font-size: 10px;
    border: 2px solid var(--hb-white);
}

.hb-search {
    height: 38px;
    border-color: rgba(39, 16, 24, .22);
}

.hb-search input {
    font-size: 12px;
}

.hb-category-nav {
    min-height: 42px;
    border-top-color: rgba(239, 77, 141, .18);
}

.hb-hero-content h1,
.hb-section-head h2,
.hb-newsletter h2,
.hb-page-hero h1,
.hb-collection-hero h1 {
    letter-spacing: 0;
}

.hb-hero-content h1 {
    font-size: clamp(34px, 6vw, 70px);
}

.hb-hero-content p,
.hb-newsletter p {
    font-size: 14px;
}

.hb-product-carousel {
    grid-auto-columns: 21%;
}

.hb-product-grid {
    gap: 34px 18px;
}

.hb-product-media {
    background: linear-gradient(180deg, #fff8fb, #fff0f6);
    border-radius: 8px;
}

.hb-product-badge {
    border-radius: 999px;
    color: var(--hb-accent-dark);
    box-shadow: 0 8px 20px rgba(239, 77, 141, .12);
    font-size: 9px;
}

.hb-product-content {
    padding-top: 12px;
}

.hb-product-content h3 {
    min-height: 36px;
    font-size: 13px;
    line-height: 1.32;
    letter-spacing: 0;
}

.hb-product-price {
    font-size: 13px;
    color: var(--hb-accent-dark);
}

.hb-size-pill span {
    min-width: 32px;
    height: 27px;
    border-radius: 999px;
    font-size: 10px;
}

.hb-size-pill input:checked + span,
.hb-add-btn,
.hb-checkout-btn,
.hb-place-order-btn,
.hb-success-actions a:first-child {
    background: var(--hb-accent-dark);
    border-color: var(--hb-accent-dark);
    color: var(--hb-white);
}

.hb-add-btn {
    min-height: 40px;
    border-radius: 999px;
    font-size: 10.5px;
    letter-spacing: .1em;
}

.hb-add-btn:hover,
.hb-checkout-btn:hover,
.hb-place-order-btn:hover {
    background: var(--hb-white);
    color: var(--hb-accent-dark);
}

.hb-footer {
    background: var(--hb-ink);
    color: var(--hb-white);
}

.hb-footer-logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.hb-footer-logo span {
    color: #ffd9e8;
}

.hb-footer h3,
.hb-footer h4 {
    font-size: 12px;
}

.hb-footer p,
.hb-footer a,
.hb-footer-bottom {
    font-size: 12px;
}

.hb-cart-drawer,
.hb-cart-overlay {
    display: block;
}

.hb-cart-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 320;
    width: min(420px, 94vw);
    background: var(--hb-white);
    box-shadow: -28px 0 70px rgba(39, 16, 24, .22);
    transform: translateX(105%);
    transition: transform .28s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

body.cart-open .hb-cart-drawer {
    transform: translateX(0);
}

.hb-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 310;
    background: rgba(39, 16, 24, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

body.cart-open .hb-cart-overlay {
    opacity: 1;
    pointer-events: auto;
}

.hb-cart-drawer-head {
    min-height: 82px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--hb-border);
}

.hb-cart-drawer-head span {
    display: block;
    color: var(--hb-muted);
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hb-cart-drawer-head strong {
    display: block;
    margin-top: 4px;
    color: var(--hb-ink);
    font-size: 19px;
    line-height: 1;
    font-weight: 1000;
}

.hb-cart-drawer-head button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--hb-border);
    border-radius: 999px;
    background: var(--hb-soft);
    color: var(--hb-accent-dark);
    cursor: pointer;
    font-size: 14px;
    font-weight: 1000;
}

.hb-cart-drawer-items {
    overflow-y: auto;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 16px;
}

.hb-cart-mini-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hb-border);
}

.hb-cart-mini-item img {
    width: 82px;
    height: 104px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--hb-soft);
}

.hb-cart-mini-item h3 {
    margin: 0 0 6px;
    color: var(--hb-ink);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 1000;
}

.hb-cart-mini-item p {
    margin: 0 0 10px;
    color: var(--hb-muted);
    font-size: 12px;
    font-weight: 800;
}

.hb-cart-mini-item form {
    display: inline-grid;
    grid-template-columns: 64px auto;
    gap: 8px;
    margin: 0 8px 8px 0;
    vertical-align: top;
}

.hb-cart-mini-item input {
    height: 34px;
    width: 64px;
    border: 1px solid var(--hb-border);
    border-radius: 999px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 900;
}

.hb-cart-mini-item button {
    min-height: 34px;
    border: 1px solid var(--hb-accent-dark);
    border-radius: 999px;
    background: var(--hb-white);
    color: var(--hb-accent-dark);
    padding: 0 12px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hb-cart-mini-remove {
    border-color: rgba(39, 16, 24, .18) !important;
    color: var(--hb-muted) !important;
}

.hb-cart-drawer-empty {
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    background: var(--hb-soft);
    border: 1px solid var(--hb-border);
    border-radius: 8px;
    padding: 22px;
}

.hb-cart-drawer-empty h3 {
    margin: 0 0 8px;
    color: var(--hb-ink);
    font-size: 18px;
}

.hb-cart-drawer-empty p {
    margin: 0;
    color: var(--hb-muted);
    font-size: 13px;
}

.hb-cart-drawer-foot {
    padding: 18px;
    border-top: 1px solid var(--hb-border);
    background: linear-gradient(180deg, #fff, #fff6fa);
}

.hb-cart-mini-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--hb-ink);
    font-size: 14px;
    font-weight: 1000;
}

.hb-cart-mini-checkout,
.hb-cart-mini-view {
    min-height: 44px;
    margin-top: 14px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hb-cart-mini-checkout {
    background: var(--hb-accent-dark);
    color: var(--hb-white);
}

.hb-cart-mini-view {
    border: 1px solid var(--hb-border);
    color: var(--hb-accent-dark);
    background: var(--hb-white);
}

@media (max-width: 1120px) {
    .hb-product-carousel {
        grid-auto-columns: 29%;
    }
}

@media (max-width: 860px) {
    .hb-mainbar {
        min-height: 64px;
        grid-template-columns: 42px 1fr auto;
    }

    .hb-logo img {
        max-width: 132px;
        max-height: 46px;
    }

    .hb-logo span {
        font-size: 21px;
    }

    .hb-header-actions {
        gap: 8px;
    }

    .hb-premium-icon,
    .hb-cart-link.hb-premium-icon,
    .hb-menu-trigger.hb-premium-icon {
        width: 38px;
        height: 38px;
    }

    .hb-mobile-search .hb-search {
        border-radius: 999px;
    }

    .hb-mobile-drawer-head strong {
        font-size: 18px;
        letter-spacing: 0;
    }

    .hb-product-carousel {
        grid-auto-columns: 47%;
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .hb-container {
        width: min(100% - 20px, 1280px);
    }

    .hb-mainbar {
        padding: 0 10px;
        gap: 8px;
    }

    .hb-mobile-search {
        padding: 0 10px 10px;
    }

    .hb-hero-link,
    .hb-hero img {
        min-height: 440px;
        height: 440px;
    }

    .hb-hero-content h1 {
        font-size: 34px;
    }

    .hb-category-grid,
    .hb-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    .hb-product-carousel {
        grid-auto-columns: 47%;
        padding-inline: 10px;
    }

    .hb-product-content h3 {
        min-height: 34px;
        font-size: 11.5px;
    }

    .hb-product-price {
        font-size: 12px;
    }

    .hb-size-row {
        gap: 5px;
        margin-bottom: 9px;
    }

    .hb-size-pill span {
        min-width: 28px;
        height: 24px;
        padding: 0 7px;
        font-size: 9px;
    }

    .hb-add-btn {
        min-height: 36px;
        font-size: 9.5px;
    }

    .hb-footer-grid {
        gap: 24px;
    }
}

/* Desktop header alignment fix */
@media (min-width: 861px) {
    .hb-header .hb-mainbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 18px;
    }

    .hb-header .hb-menu-trigger,
    .hb-header .hb-menu-trigger.hb-premium-icon {
        display: none !important;
    }

    .hb-header .hb-primary-nav {
        justify-self: start;
        min-width: 0;
    }

    .hb-header .hb-logo {
        justify-self: center;
        grid-column: 2;
    }

    .hb-header .hb-header-actions {
        justify-self: end;
        min-width: 0;
        flex-wrap: nowrap;
    }

    .hb-header .hb-search {
        width: min(320px, 28vw);
    }
}

/* Premium home product showcases */
.hb-home-showcase-head {
    width: min(1280px, calc(100% - 56px));
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hb-home-showcase-head h2 {
    margin: 0;
    color: var(--hb-ink);
    font-size: clamp(32px, 5vw, 68px);
    line-height: .9;
    font-weight: 1000;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hb-home-showcase-head > a,
.hb-home-slider-controls button {
    min-height: 42px;
    border: 1px solid var(--hb-border);
    border-radius: 999px;
    background: var(--hb-white);
    color: var(--hb-accent-dark);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hb-home-showcase-head > a {
    padding: 0 20px;
}

.hb-home-slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hb-home-slider-controls button {
    width: 42px;
    padding: 0;
}

.hb-premium-new-section {
    background: #fff7fa;
    overflow: hidden;
}

.hb-premium-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 24vw);
    gap: 18px;
    overflow-x: auto;
    padding: 0 28px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hb-premium-slider::-webkit-scrollbar {
    display: none;
}

.hb-premium-slide,
.hb-feature-product {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--hb-white);
    border: 1px solid rgba(240, 204, 217, .82);
    box-shadow: 0 16px 34px rgba(194, 31, 104, .09);
}

.hb-premium-slide {
    aspect-ratio: 4 / 5.45;
    scroll-snap-align: start;
}

.hb-premium-slide img,
.hb-feature-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
    filter: saturate(.96) contrast(1.02);
}

.hb-premium-slide::after,
.hb-feature-product::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(to top, rgba(39, 16, 24, .62), transparent);
    pointer-events: none;
}

.hb-premium-slide:hover img,
.hb-feature-product:hover img {
    transform: scale(1.03);
}

.hb-premium-slide-badge,
.hb-feature-product > span {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    min-height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--hb-accent-dark);
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    font-size: 9px;
    font-weight: 1000;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hb-premium-slide div,
.hb-feature-product div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    z-index: 2;
    color: var(--hb-white);
}

.hb-premium-slide h3,
.hb-feature-product h3 {
    margin: 0 0 7px;
    font-size: clamp(15px, 1.6vw, 21px);
    line-height: 1.14;
    font-weight: 1000;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hb-premium-slide p,
.hb-feature-product p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    font-weight: 900;
}

.hb-best-showcase,
.hb-gift-showcase {
    background: var(--hb-white);
}

.hb-feature-grid {
    width: min(1280px, calc(100% - 56px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hb-feature-grid.compact {
    padding-bottom: 8px;
}

.hb-feature-product {
    aspect-ratio: 4 / 5.15;
}

.hb-gift-showcase {
    padding-top: 24px;
}

@media (max-width: 1120px) {
    .hb-premium-slider {
        grid-auto-columns: minmax(250px, 34vw);
    }

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

@media (max-width: 640px) {
    .hb-home-showcase-head {
        width: min(100% - 24px, 1280px);
        align-items: flex-start;
    }

    .hb-home-showcase-head h2 {
        font-size: 34px;
    }

    .hb-premium-slider {
        grid-auto-columns: 76%;
        gap: 12px;
        padding-inline: 12px;
    }

    .hb-feature-grid {
        width: min(100% - 24px, 1280px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hb-feature-product {
        aspect-ratio: 4 / 5.4;
    }

    .hb-premium-slide div,
    .hb-feature-product div {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .hb-premium-slide h3,
    .hb-feature-product h3 {
        font-size: 12px;
    }
}

/* Smaller home page typography */
.hb-hero-content h1 {
    font-size: clamp(30px, 5vw, 58px);
    line-height: .98;
    letter-spacing: 0;
}

.hb-hero-content p {
    font-size: 13px;
}

.hb-hero-content span {
    min-height: 40px;
    padding: 0 24px;
    font-size: 10px;
}

.hb-section-head h2,
.hb-section-tabs button,
.hb-home-showcase-head h2 {
    font-size: clamp(24px, 3.3vw, 42px);
    line-height: 1;
    letter-spacing: 0;
}

.hb-category-card strong {
    min-height: 40px;
    font-size: 10.5px;
}

.hb-premium-slide h3,
.hb-feature-product h3 {
    font-size: clamp(12px, 1.25vw, 16px);
    line-height: 1.22;
}

.hb-premium-slide p,
.hb-feature-product p {
    font-size: 11.5px;
}

.hb-editorial-card h2 {
    font-size: clamp(20px, 2.2vw, 34px);
    line-height: 1;
    letter-spacing: 0;
}

.hb-editorial-card span,
.hb-home-showcase-head > a {
    min-height: 38px;
    font-size: 10px;
}

@media (max-width: 520px) {
    .hb-hero-content h1 {
        font-size: 30px;
    }

    .hb-section-head h2,
    .hb-home-showcase-head h2 {
        font-size: 26px;
    }
}
