/* Product page: swatches, bundle offers, colour and motion. */

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

/* --------------------------------------------------------------------
 * Layout
 * ----------------------------------------------------------------- */

.hb-pdp {
    padding-top: 28px;
}

.hb-breadcrumbs {
    margin-bottom: 20px;
    font-size: 13px;
}

.hb-pdp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 52px;
    align-items: start;
    padding: 24px 0 56px;
}

.hb-pdp-gallery {
    min-width: 0;
}

.hb-pdp-main-image {
    overflow: hidden;
    background: #fff;
}

.hb-pdp-main-image img {
    display: block;
    width: 100%;
    aspect-ratio: .86;
    object-fit: cover;
}

.hb-pdp-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hb-pdp-thumb {
    width: 76px;
    height: 76px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 14px;
    cursor: pointer;
}

.hb-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hb-pdp-summary {
    padding: 24px 0;
}

.hb-pdp-summary h1 {
    margin: 0 0 14px;
    color: var(--hb-burgundy);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.2;
}

.hb-pdp-rating {
    margin-bottom: 12px;
    color: var(--hb-gold);
}

.hb-pdp-price .price {
    font-weight: 900;
}

.hb-pdp-short-description {
    margin: 18px 0;
    color: var(--hb-muted);
    line-height: 1.9;
}

.hb-pdp-purchase form.cart {
    margin: 22px 0 0;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 22px;
}

.hb-pdp-purchase form.cart select {
    min-height: 46px;
    padding: 8px 10px;
    background: var(--hb-cream);
    border: 1px solid var(--hb-line);
    border-radius: 12px;
    font: inherit;
}

.hb-pdp-purchase form.cart .single_add_to_cart_button {
    width: 100%;
    min-height: 50px;
    background: linear-gradient(115deg, var(--hb-gold-ink), var(--hb-rose) 60%, var(--hb-lilac));
    border: 0;
    color: #fff;
    font-weight: 900;
}

.hb-pdp-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 800;
}

.hb-pdp-trust span::before {
    content: '✓';
    margin-inline-end: 6px;
}

.hb-pdp-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 64px;
}

.hb-pdp-detail-block {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 22px;
}

.hb-pdp-detail-block h2 {
    margin-top: 0;
    color: var(--hb-burgundy);
}

.hb-pdp-detail-block p {
    color: var(--hb-muted);
    line-height: 1.9;
}

.hb-cross-sell {
    padding: 36px 0 70px;
}

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

.hb-cross-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(64, 25, 15, .06);
}

.hb-cross-image {
    display: block;
    aspect-ratio: 1/1.12;
    overflow: hidden;
    background: var(--hb-cream);
}

.hb-cross-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.hb-cross-card:hover .hb-cross-image img {
    transform: scale(1.05);
}

.hb-cross-body {
    padding: 16px;
}

.hb-cross-body h3 {
    min-height: 48px;
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.45;
}

.hb-cross-body h3 a {
    color: var(--hb-burgundy);
}

.hb-cross-body > span {
    display: block;
    margin-bottom: 14px;
    font-weight: 900;
}

.hb-cross-button {
    display: block;
    padding: 11px 14px;
    background: var(--hb-cream);
    border: 1px solid var(--hb-line);
    border-radius: 999px;
    color: var(--hb-burgundy);
    font-weight: 800;
    text-align: center;
}

@media (max-width: 900px) {
    .hb-pdp-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hb-pdp-summary { padding-top: 0; }
    .hb-cross-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .hb-pdp-hero { padding-top: 4px; }
    .hb-pdp-main-image img { aspect-ratio: .9; }
    .hb-pdp-details { grid-template-columns: 1fr; }
    .hb-cross-grid { gap: 12px; }
    .hb-cross-body { padding: 12px; }
    .hb-cross-body h3 { font-size: 15px; }
}

/* --------------------------------------------------------------------
 * Motion primitives
 * ----------------------------------------------------------------- */

@keyframes hb-rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

@keyframes hb-pop {
    0%   { transform: scale(.86); }
    60%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes hb-flash {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.09); }
    100% { transform: scale(1); }
}

@keyframes hb-sheen {
    from { transform: translateX(-130%) skewX(-18deg); }
    to   { transform: translateX(430%) skewX(-18deg); }
}

@keyframes hb-drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(4%, -5%, 0) scale(1.12); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hb-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Above the fold: animate straight away, no JS involved. */
.hb-pdp .hb-pdp-gallery,
.hb-pdp .hb-pdp-summary > * {
    animation: hb-rise .62s cubic-bezier(.22, .78, .3, 1) both;
}

.hb-pdp .hb-pdp-summary > *:nth-child(1) { animation-delay: .05s; }
.hb-pdp .hb-pdp-summary > *:nth-child(2) { animation-delay: .10s; }
.hb-pdp .hb-pdp-summary > *:nth-child(3) { animation-delay: .15s; }
.hb-pdp .hb-pdp-summary > *:nth-child(4) { animation-delay: .20s; }
.hb-pdp .hb-pdp-summary > *:nth-child(5) { animation-delay: .25s; }
.hb-pdp .hb-pdp-summary > *:nth-child(6) { animation-delay: .30s; }
.hb-pdp .hb-pdp-summary > *:nth-child(7) { animation-delay: .35s; }

/* Below the fold: revealed on scroll, and only hidden when the script runs. */
.hb-io .hb-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s cubic-bezier(.22, .78, .3, 1), transform .6s cubic-bezier(.22, .78, .3, 1);
}

.hb-io .hb-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------
 * Page frame
 * ----------------------------------------------------------------- */

.hb-pdp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf9 0%, var(--hb-cream) 42%);
}

.hb-aurora {
    position: absolute;
    inset: -140px 0 auto;
    height: 780px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hb-aurora span {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(75px);
    opacity: .5;
    animation: hb-drift 17s ease-in-out infinite;
}

.hb-aurora span:nth-child(1) {
    width: 460px; height: 460px;
    inset-inline-start: -80px; top: 40px;
    background: var(--hb-rose-soft);
    opacity: .85;
}

.hb-aurora span:nth-child(2) {
    width: 420px; height: 420px;
    inset-inline-end: -60px; top: -40px;
    background: #ffe7bc;
    animation-delay: -6s;
}

.hb-aurora span:nth-child(3) {
    width: 360px; height: 360px;
    inset-inline-end: 34%; top: 250px;
    background: var(--hb-lilac-soft);
    animation-delay: -11s;
}

.hb-pdp > .hb-container {
    position: relative;
    z-index: 1;
}

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

.hb-breadcrumbs a {
    color: var(--hb-rose-ink);
    font-weight: 700;
}

/* --------------------------------------------------------------------
 * Gallery
 * ----------------------------------------------------------------- */

.hb-pdp-main-image {
    position: relative;
    border: 0;
    border-radius: 30px;
    box-shadow: 0 26px 60px rgba(120, 40, 70, .13), 0 2px 8px rgba(120, 40, 70, .06);
}

.hb-pdp-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
    pointer-events: none;
}

.hb-pdp-main-image img {
    transition: transform .75s cubic-bezier(.22, .78, .3, 1), opacity .3s ease;
}

.hb-pdp-main-image:hover img {
    transform: scale(1.045);
}

.hb-pdp-main-image.is-swapping img {
    opacity: 0;
}

.hb-pdp-image-spinner {
    position: absolute;
    inset-inline-end: 16px;
    top: 16px;
    width: 26px;
    height: 26px;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}

.hb-pdp-main-image.is-swapping .hb-pdp-image-spinner {
    opacity: 1;
}

.hb-pdp-image-spinner span {
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(201, 37, 106, .25);
    border-top-color: var(--hb-rose);
    border-radius: 50%;
    animation: hb-spin .7s linear infinite;
}

@keyframes hb-spin {
    to { transform: rotate(360deg); }
}

.hb-pdp-thumb {
    position: relative;
    border-color: var(--hb-line);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hb-pdp-thumb:hover {
    transform: translateY(-3px);
    border-color: var(--hb-gold-bright);
}

.hb-pdp-thumb.is-active {
    border-color: var(--hb-rose);
    box-shadow: 0 0 0 3px var(--hb-rose-soft);
}

/* --------------------------------------------------------------------
 * Summary
 * ----------------------------------------------------------------- */

.hb-pdp-summary .hb-eyebrow {
    color: var(--hb-rose-ink);
}

.hb-pdp-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(115deg, var(--hb-rose) 0%, var(--hb-lilac) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(201, 37, 106, .22);
}

.hb-pdp-offer-badge::before {
    content: '✦';
    font-size: 12px;
}

.hb-pdp-offer-badge::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: hb-sheen 3.6s ease-in-out infinite;
}

.hb-pdp-summary h1 {
    background: linear-gradient(100deg, var(--hb-burgundy) 30%, var(--hb-rose-ink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hb-pdp-price .price {
    color: var(--hb-gold-ink);
    font-size: 26px;
}

.hb-pdp-price del {
    color: #b3a094;
    font-weight: 700;
}

.hb-pdp-trust {
    gap: 10px;
    margin-top: 22px;
}

.hb-pdp-trust span {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--hb-line);
    color: var(--hb-muted);
    transition: transform .2s ease, border-color .2s ease;
}

.hb-pdp-trust span:hover {
    transform: translateY(-2px);
    border-color: var(--hb-gold-bright);
}

.hb-pdp-trust span::before {
    color: var(--hb-mint);
}

/* --------------------------------------------------------------------
 * Swatches
 * ----------------------------------------------------------------- */

.hb-attr {
    margin-bottom: 18px;
}

.hb-attr-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.hb-attr-label {
    color: var(--hb-burgundy);
    font-size: 14px;
    font-weight: 900;
}

.hb-attr-chosen {
    color: var(--hb-rose-ink);
    font-size: 13px;
    font-weight: 800;
}

.hb-attr-chosen:not(:empty) {
    animation: hb-fade-in .3s ease both;
}

.hb-attr-chosen:not(:empty)::before {
    content: '— ';
    color: #d3bfa5;
}

.hb-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hb-swatch {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 13px !important;
    color: var(--hb-burgundy);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.hb-swatch:hover:not(:disabled) {
    border-color: var(--hb-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(192, 128, 16, .14);
}

.hb-swatch.is-selected {
    background: var(--hb-rose-soft);
    border-color: var(--hb-rose);
    color: var(--hb-rose-ink);
    box-shadow: inset 0 0 0 1px var(--hb-rose);
    animation: hb-pop .32s cubic-bezier(.3, 1.4, .5, 1);
}

.hb-swatch:disabled,
.hb-swatch.is-unavailable {
    opacity: .4;
    cursor: not-allowed;
    background: #faf6ec;
    box-shadow: none;
    transform: none;
}

.hb-swatch.is-unavailable::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top left, transparent calc(50% - 1px), #b9a48b calc(50% - 1px), #b9a48b calc(50% + 1px), transparent calc(50% + 1px));
    border-radius: inherit;
    pointer-events: none;
}

.hb-swatch--color {
    width: 44px;
    height: 44px;
    padding: 3px;
    border-radius: 50% !important;
}

.hb-swatch--color.is-selected {
    padding: 2px;
    background: #fff;
    border-width: 2px;
    box-shadow: 0 0 0 3px var(--hb-rose-soft);
}

.hb-swatch-dot {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--hb-swatch, #ddd);
    box-shadow: inset 0 0 0 1px rgba(43, 23, 19, .12);
}

/* WooCommerce's own variation table: keep the select for its script, show ours. */
.hb-pdp-purchase table.variations,
.hb-pdp-purchase table.variations tbody,
.hb-pdp-purchase table.variations tr,
.hb-pdp-purchase table.variations td {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

.hb-pdp-purchase table.variations th.label {
    display: none;
}

.hb-attr-native {
    display: none;
}

.hb-pdp-purchase .reset_variations {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 700;
}

.hb-pdp-purchase form.cart {
    border-color: var(--hb-line);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(120, 40, 70, .07);
}

/* --------------------------------------------------------------------
 * Notices
 * ----------------------------------------------------------------- */

.hb-pdp .woocommerce-error,
.hb-pdp .woocommerce-message,
.hb-pdp .woocommerce-info {
    margin: 0 0 22px;
    padding: 15px 18px;
    border-radius: 16px;
    border: 1px solid var(--hb-line);
    background: #fff;
    color: var(--hb-burgundy);
    font-weight: 800;
    list-style: none;
    animation: hb-rise .45s cubic-bezier(.22, .78, .3, 1) both;
}

.hb-pdp .woocommerce-error {
    border-color: #f3cdcd;
    background: #fdecec;
    color: #a32b2b;
}

.hb-pdp .woocommerce-message {
    border-color: #bfe8d8;
    background: var(--hb-mint-soft);
    color: #14664c;
}

.hb-pdp .woocommerce-error li,
.hb-pdp .woocommerce-message li {
    list-style: none;
}

/* --------------------------------------------------------------------
 * Bundle offers
 * ----------------------------------------------------------------- */

.hb-offers {
    margin-top: 24px;
}

.hb-offers-head {
    margin-bottom: 14px;
}

.hb-offers-head .hb-eyebrow {
    margin-bottom: 4px;
}

.hb-offers-sub {
    margin: 0;
    color: var(--hb-muted);
    font-size: 14px;
}

.hb-tiers {
    display: grid;
    gap: 12px;
}

.hb-tier {
    position: relative;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 22px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.hb-tier:hover {
    border-color: #e8c9a6;
    transform: translateY(-2px);
}

.hb-tier.is-selected {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(125deg, var(--hb-gold-bright), var(--hb-rose) 55%, var(--hb-lilac)) border-box;
    border-width: 2px;
    box-shadow: 0 18px 38px rgba(201, 37, 106, .14);
    transform: none;
}

.hb-tier-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.hb-tier-input:focus-visible + .hb-tier-head {
    outline: 2px solid var(--hb-rose);
    outline-offset: 3px;
    border-radius: 20px;
}

.hb-tier-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4px 14px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}

.hb-tier-mark {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 2px solid #e4d0b4;
    border-radius: 50%;
    background: #fff;
    transition: background-color .25s ease, border-color .25s ease;
}

.hb-tier-mark::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transform: scale(0);
    transition: transform .3s cubic-bezier(.3, 1.5, .5, 1);
}

.hb-tier.is-selected .hb-tier-mark {
    background: linear-gradient(135deg, var(--hb-rose), var(--hb-lilac));
    border-color: transparent;
}

.hb-tier.is-selected .hb-tier-mark::after {
    transform: scale(1);
}

.hb-tier-main {
    grid-column: 2;
    grid-row: 1;
}

.hb-tier-title {
    display: block;
    color: var(--hb-burgundy);
    font-size: 18px;
    font-weight: 900;
}

.hb-tier-unit {
    display: block;
    margin-top: 4px;
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 700;
}

.hb-tier-unit .amount {
    color: var(--hb-muted);
}

.hb-tier-prices {
    grid-column: 3;
    grid-row: 1 / 3;
    text-align: end;
    line-height: 1.35;
}

.hb-tier-prices del {
    display: block;
    color: #b9a79b;
    font-size: 13px;
    font-weight: 700;
}

.hb-tier-prices ins {
    display: block;
    color: var(--hb-gold-ink);
    font-size: 23px;
    font-weight: 900;
    text-decoration: none;
    background: none;
    transition: color .25s ease;
}

.hb-tier.is-selected .hb-tier-prices ins {
    color: var(--hb-rose);
}

.hb-tier-save {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 8px;
    padding: 5px 12px;
    background: var(--hb-mint-soft);
    border-radius: 999px;
    color: #14664c;
    font-size: 12px;
    font-weight: 900;
}

.hb-tier-save .amount {
    color: inherit;
}

.hb-tier-badge {
    position: absolute;
    top: -1px;
    inset-inline-end: 22px;
    padding: 5px 13px;
    background: linear-gradient(115deg, var(--hb-rose), var(--hb-lilac));
    border-radius: 0 0 12px 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(201, 37, 106, .22);
}

/* Pieces reveal by animating the row track from 0fr to 1fr. */
.hb-tier-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s cubic-bezier(.22, .78, .3, 1);
}

.hb-tier.is-selected .hb-tier-body {
    grid-template-rows: 1fr;
}

.hb-tier-body-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 20px;
    opacity: 0;
    transition: opacity .3s ease .06s;
}

.hb-tier.is-selected .hb-tier-body-inner {
    padding-top: 16px;
    padding-bottom: 20px;
    border-top: 1px solid #f7ecda;
    opacity: 1;
}

.hb-piece {
    padding: 14px 0;
    border-bottom: 1px solid #f9f2e3;
    border-radius: 14px;
    transition: background-color .3s ease, box-shadow .3s ease;
}

.hb-piece:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hb-piece.is-missing {
    background: #fdf1f1;
    box-shadow: 0 0 0 8px #fdf1f1;
}

.hb-piece-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hb-piece-num {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: var(--hb-gold-soft);
    border-radius: 50%;
    color: var(--hb-gold-ink);
    font-size: 13px;
    font-weight: 900;
    transition: background .25s ease, color .25s ease;
}

.hb-piece.is-complete .hb-piece-num {
    background: linear-gradient(135deg, var(--hb-mint), #38c795);
    color: #fff;
    animation: hb-pop .34s cubic-bezier(.3, 1.4, .5, 1);
}

.hb-piece-title {
    color: var(--hb-burgundy);
    font-size: 14px;
    font-weight: 800;
}

.hb-piece-state {
    margin-inline-start: auto;
    color: var(--hb-mint);
    font-size: 12px;
    font-weight: 800;
}

.hb-piece-state:not(:empty) {
    animation: hb-fade-in .3s ease both;
}

.hb-piece-state:not(:empty)::before {
    content: '✓ ';
}

.hb-piece-simple {
    margin: 0;
    color: var(--hb-muted);
    font-size: 13px;
}

.hb-piece-attrs .hb-attr:last-child {
    margin-bottom: 0;
}

/* Footer */
.hb-offers-error {
    margin: 14px 0 0;
    padding: 12px 15px;
    background: #fdecec;
    border: 1px solid #f3cdcd;
    border-radius: 14px;
    color: #a32b2b;
    font-size: 14px;
    font-weight: 800;
    animation: hb-rise .35s ease both;
}

.hb-offers-error[hidden] {
    display: none;
}

.hb-offers-foot {
    margin-top: 18px;
}

.hb-offers-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 58px;
    padding: 12px 22px;
    background: linear-gradient(115deg, var(--hb-gold-ink) 0%, var(--hb-rose) 55%, var(--hb-lilac) 100%);
    border: 0;
    border-radius: 999px !important;
    color: #fff;
    font: inherit;
    font-size: 19px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(201, 37, 106, .26);
    transition: transform .18s ease, box-shadow .18s ease;
}

.hb-offers-cta::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
    animation: hb-sheen 4.2s ease-in-out infinite;
    pointer-events: none;
}

.hb-offers-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(201, 37, 106, .32);
}

.hb-offers-cta:active {
    transform: translateY(-1px) scale(.99);
}

.hb-cta-total {
    position: relative;
    padding: 5px 13px;
    background: rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: 16px;
}

.hb-cta-total.is-changed {
    animation: hb-flash .4s cubic-bezier(.3, 1.4, .5, 1);
}

.hb-offers-note {
    margin: 10px 0 0;
    color: var(--hb-muted);
    font-size: 12px;
    text-align: center;
}

/* --------------------------------------------------------------------
 * Details and cross-sell
 * ----------------------------------------------------------------- */

.hb-pdp-detail-block {
    border-color: var(--hb-line);
    border-radius: 24px;
    background: linear-gradient(160deg, #fff 60%, var(--hb-gold-soft));
    box-shadow: 0 12px 28px rgba(120, 40, 70, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hb-pdp-detail-block:nth-child(2) {
    background: linear-gradient(160deg, #fff 60%, var(--hb-rose-soft));
}

.hb-pdp-detail-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(120, 40, 70, .1);
}

.hb-cross-sell .hb-eyebrow {
    color: var(--hb-rose-ink);
}

.hb-cross-card {
    border-color: var(--hb-line);
    border-radius: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.hb-cross-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(120, 40, 70, .12);
}

.hb-cross-body > span {
    color: var(--hb-gold-ink);
}

.hb-cross-button {
    border-color: var(--hb-line);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.hb-cross-button:hover {
    background: linear-gradient(115deg, var(--hb-rose), var(--hb-lilac));
    border-color: transparent;
    color: #fff;
}

/* --------------------------------------------------------------------
 * Small screens
 * ----------------------------------------------------------------- */

@media (max-width: 600px) {
    .hb-aurora { height: 520px; }

    .hb-tier-head {
        padding: 15px 14px;
        gap: 4px 11px;
    }

    .hb-tier-title { font-size: 16px; }
    .hb-tier-prices ins { font-size: 20px; }

    .hb-tier-badge {
        inset-inline-end: 14px;
        font-size: 11px;
    }

    .hb-tier-body-inner { padding-inline: 14px; }

    .hb-swatch {
        min-height: 42px;
        padding: 9px 15px;
    }

    .hb-swatch--color {
        width: 42px;
        height: 42px;
        padding: 3px;
    }

    .hb-offers-cta { font-size: 17px; }
}

/* --------------------------------------------------------------------
 * Respect the visitor's motion preference
 * ----------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .hb-pdp *,
    .hb-pdp *::before,
    .hb-pdp *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .hb-io .hb-reveal {
        opacity: 1;
        transform: none;
    }

    .hb-aurora span { animation: none; }
}
