/**
 * Hero Slider — ported from leafymarket.ca live slider
 * Block: acf/hero
 */

/* ---------- ROOT + TOKENS ---------- */
.hero-slider {
    --hs-bg-deep: #06170d;
    --hs-bg-mid: #0c2c17;
    --hs-green: #2f9e44;
    --hs-green-lt: #69db7c;
    --hs-green-glow: #b2f2bb;
    --hs-lime: #c0eb75;
    --hs-gold: #ffd43b;
    --hs-ink: #f4fff7;
    --hs-muted: #9ec9ab;
    --hs-card: rgba(255, 255, 255, 0.05);
    --hs-border: rgba(178, 242, 187, 0.18);
    --hs-promo-pink: #ff4fa6;
    --hs-promo-pink-lt: #ff77c5;
    --hs-promo-headline: #b71450;
    --hs-promo-shadow: #8e0f40;

    position: relative;
    width: 100%;
    max-width: none;
    padding-block: var(--container-gutter) 0;
    padding-inline: 0;
    margin: 0;
    overflow: visible;
    isolation: isolate;
    font-family: var(--primary-font, "Albert Sans", Arial, Helvetica, sans-serif);
    color: var(--hs-ink);
    -webkit-tap-highlight-color: transparent;

    --body-text-color: var(--body-text-color-on-brand);
    --body-text-color-strong: #f4fff7;
}

.hero-slider > .container {
    padding-block: 0;
}

/* ---------- TRACK ---------- */
.hero-slider__track-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: clamp(14px, 2.4vw, 26px);
}

.hero-slider *,
.hero-slider *::before,
.hero-slider *::after {
    box-sizing: border-box;
}

.hero-slider__slides {
    display: flex;
    width: 100%;
    min-width: 0;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.hero-slider__slide {
    position: relative;
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    min-height: clamp(440px, 62vw, 560px);
    display: flex;
    align-items: center;
    padding: clamp(40px, 5.5vw, 64px) clamp(18px, 6vw, 90px) clamp(64px, 8vw, 88px);
}

/* Before JS: show only the first slide so extra slides cannot collapse the grid. */
.hero-slider:not([data-hero-slider-ready]) .hero-slider__slides {
    display: block;
    transform: none !important;
    transition: none;
}

.hero-slider:not([data-hero-slider-ready]) .hero-slider__slide:not(.is-active) {
    display: none;
}

/* ---------- SLIDE VARIANTS ---------- */
.hero-slider__slide--vape {
    background:
        radial-gradient(120% 140% at 12% 8%, rgba(105, 219, 124, 0.22), transparent 45%),
        radial-gradient(120% 130% at 92% 92%, rgba(192, 235, 117, 0.16), transparent 48%),
        linear-gradient(160deg, var(--hs-bg-deep) 0%, var(--hs-bg-mid) 60%, #04130a 100%);
}

.hero-slider__slide--vendor {
    background:
        radial-gradient(120% 140% at 88% 10%, rgba(255, 212, 59, 0.16), transparent 46%),
        radial-gradient(120% 130% at 8% 92%, rgba(105, 219, 124, 0.2), transparent 48%),
        linear-gradient(150deg, #04130a 0%, #0c2c17 55%, #06170d 100%);
}

.hero-slider__slide--promo {
    padding: 0 !important;
    min-height: 0 !important;
    display: block !important;
    content-visibility: visible !important;
    --body-text-color: #ffffff;
    --body-text-color-strong: #ffffff;
}

/* ---------- DECORATIVE: GLOW ---------- */
.hero-slider__glow {
    position: absolute;
    width: 60%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 219, 124, 0.34), transparent 68%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    animation: hs-mesh 20s ease-in-out infinite alternate;
}

.hero-slider__glow--1 {
    top: -12%;
    left: 2%;
}

.hero-slider__glow--2 {
    bottom: -16%;
    right: 0;
    background: radial-gradient(circle, rgba(192, 235, 117, 0.26), transparent 68%);
    animation-duration: 26s;
    animation-direction: alternate-reverse;
}

@keyframes hs-mesh {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(6%, -4%, 0) scale(1.14);
    }
}

/* ---------- DECORATIVE: GRAIN ---------- */
.hero-slider__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.5px, transparent 0.5px);
    background-size: 4px 4px;
}

/* ---------- DECORATIVE: LEAF ---------- */
.hero-slider__leaf {
    position: absolute;
    z-index: 1;
    color: var(--hs-green-lt);
    opacity: 0.09;
    pointer-events: none;
    will-change: transform;
}

.hero-slider__leaf--1 {
    top: -30px;
    left: 4%;
    width: clamp(90px, 12vw, 150px);
    animation: hs-spin 40s linear infinite;
}

.hero-slider__leaf--2 {
    bottom: -46px;
    right: 6%;
    width: clamp(120px, 16vw, 210px);
    opacity: 0.06;
    animation: hs-spin 56s linear infinite reverse;
}

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

/* ---------- DECORATIVE: SMOKE ---------- */
.hero-slider__smoke {
    position: absolute;
    bottom: -60px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 255, 220, 0.45), transparent 70%);
    filter: blur(16px);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-slider__smoke--1 {
    left: 22%;
    animation: hs-rise 10s ease-in infinite;
}

.hero-slider__smoke--2 {
    left: 54%;
    animation: hs-rise 12s ease-in infinite 3s;
}

.hero-slider__smoke--3 {
    left: 80%;
    animation: hs-rise 11s ease-in infinite 6s;
}

@keyframes hs-rise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.5);
        opacity: 0;
    }

    25% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.3;
    }

    100% {
        transform: translate3d(0, -420px, 0) scale(1.55);
        opacity: 0;
    }
}

/* ---------- INNER LAYOUT ---------- */
.hero-slider__inner {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.hero-slider__slide--vendor .hero-slider__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
}

.hero-slider__copy {
    min-width: 0;
    max-width: none;
}

/* ---------- COPY: TITLE + ACCENT ---------- */
.hero-slider__title {
    font-size: clamp(2rem, 5.4vw, 4.3rem);
    line-height: 1.02;
    margin: 18px 0 0;
    color: var(--hs-ink) !important;
}

.hero-slider__title span:not(.heading-accent) {
    color: var(--hs-ink) !important;
    display: block;
}

/* ---------- COPY: SUB + STATS ---------- */
.hero-slider__sub,
.hero-slider__promo-body {
    color: var(--body-text-color);
}

.hero-slider__sub {
    margin: 20px 0 0;
    max-width: var(--body-text-max-width);
}

.hero-slider__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.hero-slider__chip {
    font-size: clamp(11px, 1.4vw, 12.5px);
    font-weight: 600;
    color: var(--hs-green-glow);
    border: 1px solid var(--hs-border);
    background: var(--hs-card);
    padding: 7px 12px;
    border-radius: 10px;
}

/* ---------- CTA BUTTONS ---------- */
.hero-slider__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-slider .btn-tertiary {
    --btn-tertiary-text: #f4fff7;
    --btn-tertiary-bg: rgba(255, 255, 255, 0.05);
    --btn-tertiary-border: rgba(178, 242, 187, 0.18);
    --btn-tertiary-hover-border: var(--btn-primary-mint);
}

.hero-slider__promo-cta-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

/* ---------- PRODUCT SHOWCASE ---------- */
.hero-slider__showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(10px, 1.6vw, 16px);
    align-content: center;
    min-width: 0;
    width: 100%;
}

.hero-slider__prod {
    position: relative;
    z-index: 2;
    display: block;
    min-width: 0;
    text-decoration: none !important;
    color: inherit !important;
    border-radius: 16px;
    padding: clamp(9px, 1.4vw, 12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--hs-border);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
    will-change: transform;
}

.hero-slider__prod:hover,
.hero-slider__prod:focus,
.hero-slider__prod:visited {
    text-decoration: none !important;
    color: inherit !important;
}

.hero-slider__prod-pic {
    background: #fff;
    border-radius: 11px;
    padding: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.hero-slider__prod-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

.hero-slider__prod-tag {
    margin-top: 9px;
    font-size: clamp(9.5px, 1.3vw, 11px);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hs-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-slider__prod-label {
    display: block;
    font-family: var(--display-heading-font);
    font-weight: 700;
    font-size: clamp(12px, 1.6vw, 14px);
    color: var(--hs-green-glow);
    text-align: center;
    margin-top: 2px;
}

.hero-slider__prod--p1 {
    animation: hs-bob 7s ease-in-out infinite 1.4s;
}

.hero-slider__prod--p2 {
    animation: hs-bob 7.6s ease-in-out infinite 1.7s;
}

.hero-slider__prod--p3 {
    animation: hs-bob 8s ease-in-out infinite 2s;
}

.hero-slider__prod--p4 {
    animation: hs-bob 7.3s ease-in-out infinite 2.3s;
}

@keyframes hs-bob {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

.hero-slider__prod:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 22px 46px rgba(105, 219, 124, 0.32);
    z-index: 5;
    animation-play-state: paused;
}

.hero-slider__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 219, 124, 0.24), transparent 66%);
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
    animation: hs-breathe 7s ease-in-out infinite;
}

@keyframes hs-breathe {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.14);
        opacity: 0.95;
    }
}

/* ---------- VENDOR PERKS CARD ---------- */
.hero-slider__vendor-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(260px, 40vw, 340px);
}

.hero-slider__vendor-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 400px;
    padding: clamp(20px, 3.4vw, 30px);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--hs-border);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.46);
    animation: hs-bob 9s ease-in-out infinite;
}

.hero-slider__vendor-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin: 0 0 14px;
    color: var(--hs-ink);
}

.hero-slider__perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(178, 242, 187, 0.1);
    font-size: clamp(12.5px, 1.6vw, 14px);
    line-height: 1.45;
    color: var(--hs-muted);
}

.hero-slider__perk:last-child {
    border-bottom: 0;
}

.hero-slider__perk-ico {
    flex: 0 0 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hs-green), var(--hs-green-lt));
    color: var(--hs-bg-deep);
}

.hero-slider__perk-icon-svg {
    width: 16px;
    height: 16px;
}

.hero-slider__perk strong {
    color: var(--hs-ink);
    font-weight: 600;
}

/* ---------- ARROWS ---------- */
.hero-slider__arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 1px solid var(--hs-border) !important;
    background: rgba(6, 23, 13, 0.78) !important;
    color: var(--hs-ink) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.hero-slider__arrow:hover {
    background: var(--hs-green) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.hero-slider__arrow svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.6 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    pointer-events: none !important;
}

.hero-slider__arrow svg * {
    fill: none !important;
    stroke: currentColor !important;
}

.hero-slider__arrow--prev {
    left: 16px !important;
    right: auto !important;
}

.hero-slider__arrow--next {
    right: 16px !important;
    left: auto !important;
}

/* ---------- DOTS ---------- */
.hero-slider__dots {
    position: absolute !important;
    bottom: clamp(46px, 7vw, 56px) !important;
    left: clamp(18px, 6vw, 90px) !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider__dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(178, 242, 187, 0.3) !important;
    cursor: pointer !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    transition: width 0.3s ease, background 0.3s ease !important;
}

.hero-slider__dot:hover {
    background: rgba(178, 242, 187, 0.55) !important;
}

.hero-slider__dot.is-active {
    width: 30px !important;
    background: var(--hs-green-lt) !important;
}

/* ---------- MARQUEE TICKER ---------- */
.hero-slider__marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    overflow: hidden;
    border-top: 1px solid var(--hs-border);
    background: rgba(4, 16, 9, 0.72);
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.hero-slider__marquee-track {
    display: flex;
    width: max-content;
    animation: hs-hero-scroll var(--hs-marquee-duration, 30s) linear infinite;
    will-change: transform;
}

.hero-slider__marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 40px;
    padding-inline: 20px;
}

.hero-slider__marquee-track span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hs-muted);
    display: inline-flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    padding-block: 8px;
}

.hero-slider__marquee-track span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hs-green-lt);
}

.hero-slider__marquee-track span::after {
    content: none !important;
}

@keyframes hs-hero-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(var(--hs-marquee-end, -50%), 0, 0);
    }
}

/* ---------- ENTRANCE ANIMATIONS ---------- */
.hero-slider__slide:not(.is-active) .hero-slider__anim,
.hero-slider__slide:not(.is-active) .hero-slider__pop {
    opacity: 0;
    transform: translateY(22px);
}

.hero-slider__slide.is-active .hero-slider__anim {
    opacity: 1;
    transform: none;
    animation: hs-up 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-slider__slide.is-active .hero-slider__copy > .hero-slider__anim:nth-child(1) {
    animation-delay: 0.08s;
}

.hero-slider__slide.is-active .hero-slider__copy > .hero-slider__anim:nth-child(2) {
    animation-delay: 0.16s;
}

.hero-slider__slide.is-active .hero-slider__copy > .hero-slider__anim:nth-child(3) {
    animation-delay: 0.24s;
}

.hero-slider__slide.is-active .hero-slider__copy > .hero-slider__anim:nth-child(4) {
    animation-delay: 0.32s;
}

.hero-slider__slide.is-active .hero-slider__copy > .hero-slider__anim:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes hs-up {
    from {
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider__slide.is-active .hero-slider__pop {
    opacity: 1;
    transform: none;
    animation: hs-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__pop:nth-child(2),
.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__prod:nth-child(2) {
    animation-delay: 0.42s;
}

.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__pop:nth-child(3),
.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__prod:nth-child(3) {
    animation-delay: 0.52s;
}

.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__pop:nth-child(4),
.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__prod:nth-child(4) {
    animation-delay: 0.62s;
}

.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__pop:nth-child(5),
.hero-slider__slide.is-active .hero-slider__showcase .hero-slider__prod:nth-child(5) {
    animation-delay: 0.72s;
}

.hero-slider__slide.is-active .hero-slider__vendor-card.hero-slider__pop {
    animation-delay: 0.42s;
}

@keyframes hs-in {
    from {
        transform: translateY(16px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =============================================================================
   PROMO SLIDE — pink campaign (drip, sprinkles, donut, carousel)
   ============================================================================= */
.hero-slider__promo {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: var(--hero-promo-bg, var(--hs-promo-pink));
    background-image: linear-gradient(
        135deg,
        var(--hero-promo-bg, var(--hs-promo-pink)) 0%,
        var(--hs-promo-pink-lt) 45%,
        var(--hero-promo-bg, var(--hs-promo-pink)) 100%
    );
    overflow: hidden;
    font-family: var(--primary-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif);
    isolation: isolate;
    border-radius: inherit;
}

.hero-slider__slide--promo .hero-slider__promo {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-slider__promo-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(194, 24, 91, 0.45) 0%, transparent 55%),
        repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.025) 20px 40px);
    pointer-events: none;
    z-index: 1;
}

.hero-slider__promo-drip {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    pointer-events: none;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(155, 16, 75, 0.3));
}

.hero-slider__promo-sprinkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero-slider__promo-sprinkle {
    position: absolute;
    top: -20px;
    border-radius: 2px;
    will-change: transform;
    opacity: 0.92;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    animation-name: hs-rain;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes hs-rain {
    0% {
        transform: translateY(0) rotate(var(--hs-rot, 0deg));
    }

    100% {
        transform: translateY(900px) rotate(calc(var(--hs-rot, 0deg) + 540deg));
    }
}

.hero-slider__promo-donut {
    position: absolute;
    width: 240px;
    height: 240px;
    left: -80px;
    bottom: -80px;
    opacity: 0.14;
    z-index: 1;
    pointer-events: none;
    animation: hs-promo-spin 40s linear infinite;
}

.hero-slider__promo-donut svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes hs-promo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-slider__promo-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding: 170px 32px 24px;
    align-items: center;
    min-height: 700px;
    max-width: 1080px;
    margin: 0 auto;
    min-width: 0;
}

.hero-slider__promo-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    align-items: flex-start;
}

.hero-slider__promo-headline {
    font-size: clamp(64px, 12vw, 108px);
    line-height: 1;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    background: var(--hs-promo-headline);
    padding: 14px 32px 18px;
    border-radius: 18px;
    display: inline-block;
    width: max-content;
    font-family: var(--display-heading-font) !important;
    text-transform: uppercase;
    box-shadow:
        0 8px 0 var(--hs-promo-shadow),
        0 16px 36px rgba(0, 0, 0, 0.3);
    text-shadow: none;
    transform: rotate(-2deg);
}

.hero-slider__promo-tagline {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--display-heading-font) !important;
    text-shadow:
        0 2px 0 rgba(140, 18, 75, 0.65),
        0 4px 14px rgba(140, 18, 75, 0.5);
    margin-top: 6px;
}

.hero-slider__promo-body {
    margin: 0;
    max-width: var(--body-text-max-width);
    text-shadow:
        0 1px 0 rgba(140, 18, 75, 0.55),
        0 2px 8px rgba(140, 18, 75, 0.45);
}

.hero-slider__promo-text .hero-slider__cta-row {
    margin-top: 6px;
}

.hero-slider__promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--hs-promo-headline) !important;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none !important;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow:
        0 6px 0 rgba(140, 18, 75, 0.5),
        0 14px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 6px;
    text-shadow: none;
    cursor: pointer;
    border: none;
}

.hero-slider__promo-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 9px 0 rgba(140, 18, 75, 0.5),
        0 18px 40px rgba(0, 0, 0, 0.28);
    color: var(--hs-promo-headline) !important;
}

.hero-slider__promo-cta:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 rgba(140, 18, 75, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-slider__promo-cta svg {
    transition: transform 0.2s ease;
}

.hero-slider__promo-cta:hover svg {
    transform: translateX(5px);
}

/* Promo carousel */
.hero-slider__promo-carousel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    perspective: 1200px;
}

.hero-slider__promo-carousel {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 730px;
    overflow: hidden;
    cursor: grab;
}

.hero-slider__promo-carousel:active {
    cursor: grabbing;
}

.hero-slider__promo-track {
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-slider__promo:not([data-promo-ready]) .hero-slider__promo-track {
    display: block;
    transform: none !important;
    transition: none;
}

.hero-slider__promo:not([data-promo-ready]) .hero-slider__promo-carousel-slide:not(.is-active) {
    display: none;
}

.hero-slider__promo-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    min-height: 0;
    min-width: 100%;
    overflow: visible;
    content-visibility: visible;
}

.hero-slider__promo-vape-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
    position: relative;
}

.hero-slider__promo-vape-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
}

.hero-slider__promo-vape-img {
    max-width: 95%;
    max-height: 92%;
    object-fit: contain;
    transform: scale(1.25);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.hero-slider__promo-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
}

.hero-slider__promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.hero-slider__promo-dot.is-active {
    background: #fff;
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.hero-slider__promo-dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.78);
}

/* Promo slide: hide main slider dots/arrows overlap */
.hero-slider__slide--promo ~ .hero-slider__dots,
.hero-slider__track-wrap:has(.hero-slider__slide--promo.is-active) .hero-slider__dots {
    z-index: 25;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
    .hero-slider__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: clamp(20px, 3.5vw, 40px);
    }

    .hero-slider__slide--vendor .hero-slider__inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    }
}

@media (max-width: 880px) {
    .hero-slider__slide:not(.hero-slider__slide--promo) {
        flex-direction: column;
        text-align: center;
        padding: clamp(40px, 7vw, 56px) clamp(20px, 5vw, 40px) 78px;
    }

    .hero-slider__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        justify-items: center;
    }

    .hero-slider__copy {
        order: 1;
        max-width: none;
    }

    .hero-slider__showcase,
    .hero-slider__vendor-art {
        order: 2;
        width: 100%;
        max-width: 460px;
    }

    .hero-slider__copy .eyebrow,
    .hero-slider__title,
    .hero-slider__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider__sub {
        max-width: var(--body-text-max-width);
    }

    .hero-slider__stats,
    .hero-slider__cta-row {
        justify-content: center;
    }

    .hero-slider__arrow {
        display: none !important;
    }

    .hero-slider__dots {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 50px !important;
    }

    /* Promo responsive */
    .hero-slider__promo {
        min-height: auto;
    }

    .hero-slider__promo-drip {
        height: auto;
    }

    .hero-slider__promo-grid {
        grid-template-columns: 1fr;
        padding: 120px 28px 80px;
        gap: 32px;
        min-height: auto;
        max-width: 100%;
    }

    .hero-slider__promo-headline {
        font-size: 88px;
        letter-spacing: -1px;
        padding: 12px 26px 14px;
    }

    .hero-slider__promo-tagline {
        font-size: 22px;
    }

    .hero-slider__promo-carousel {
        height: 560px;
        max-width: 100%;
    }

    .hero-slider__promo-vape-img {
        transform: scale(1.7);
    }

    .hero-slider__promo-donut {
        width: 160px;
        height: 160px;
        left: -50px;
        bottom: -50px;
    }
}

@media (max-width: 600px) {
    .hero-slider__slide:not(.hero-slider__slide--promo) {
        min-height: 0;
    }

    .hero-slider__showcase {
        max-width: 380px;
    }

    .hero-slider__cta-row .btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .hero-slider__promo-headline {
        font-size: 64px;
        letter-spacing: 0;
        padding: 10px 22px 12px;
        border-radius: 14px;
        box-shadow:
            0 6px 0 var(--hs-promo-shadow),
            0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .hero-slider__promo-tagline {
        font-size: 18px;
    }

    .hero-slider__promo-body {
        font-size: 14px;
    }

    .hero-slider__promo-cta {
        font-size: 13px;
        padding: 14px 24px;
    }

    .hero-slider__promo-text .eyebrow--promo {
        font-size: 11px;
        padding: 6px 13px;
    }

    .hero-slider__promo-carousel {
        height: 480px;
        max-width: 100%;
    }

    .hero-slider__promo-grid {
        padding: 90px 20px 80px;
    }

    .hero-slider__promo-vape-img {
        max-width: 75%;
        transform: scale(1.7);
    }
}

@media (max-width: 420px) {
    .hero-slider__slide:not(.hero-slider__slide--promo) {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-slider__showcase {
        gap: 9px;
    }

    .hero-slider__prod {
        padding: 8px;
        border-radius: 13px;
    }

    .hero-slider__title {
        font-size: clamp(1.85rem, 8.5vw, 2.5rem);
    }

    .hero-slider__cta-row {
        flex-direction: column;
    }

    .hero-slider__cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-slider__leaf {
        display: none;
    }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
    .hero-slider *,
    .hero-slider *::before,
    .hero-slider *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slider__slide .hero-slider__anim,
    .hero-slider__slide .hero-slider__pop {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-slider__slides {
        transition: none !important;
    }

    .hero-slider__promo-track {
        transition: none !important;
    }
}
