/* === Variant: v1 — Two-card premium showcase ========================= */
.wl-hero-modern-v1 {
    background: var(--wl-pack-bg-alt);
    position: relative;
    overflow: hidden;
}

/* Non-active slides are hidden until slider JS activates them */
.wl-hero-modern-v1 .wl-hero-slide--hidden {
    display: none;
}

.wl-hero-modern-v1 .wl-hero-stage {
    position: relative;
    margin: 0 auto;
}

.wl-hero-modern-v1 .wl-hero-cards {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 22px;
}

/* Shared card base */
.wl-hero-modern-v1 .wl-hc {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 640px;
    background: linear-gradient(155deg, #060B1F 0%, #0C1336 55%, #131A44 100%);
    isolation: isolate;
}

/* ── Left card ─────────────────────────────────────────────────────── */
.wl-hero-modern-v1 .wl-hc-lg {
    display: flex;
    align-items: flex-end;
}

.wl-hero-modern-v1 .wl-hc-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wl-hero-modern-v1 .wl-hc-lg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 11, 31, 0.92) 0%, rgba(6, 11, 31, 0.55) 30%, rgba(6, 11, 31, 0.15) 55%, transparent 75%);
    z-index: 1;
}

.wl-hero-modern-v1 .wl-hc-content {
    position: relative;
    z-index: 2;
    padding: 54px 60px;
    color: #fff;
    max-width: 580px;
}

.wl-hero-modern-v1 .wl-hc-eyebrow {
    font-family: var(--wl-pack-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wl-pack-primary);
    margin-bottom: 12px;
    opacity: 0.9;
}

.wl-hero-modern-v1 .wl-hc-heading {
    font-family: var(--wl-pack-font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
    color: #fff;
}

.wl-hero-modern-v1 .wl-hc-heading .wl-hl {
    background: linear-gradient(90deg, #FF6B35 0%, #FF9F1C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wl-hero-modern-v1 .wl-hc-sub {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
    max-width: 380px;
    margin: 0;
}

.wl-hero-modern-v1 .wl-hc-ctas {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.wl-hero-modern-v1 .wl-hc-btn {
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--wl-pack-font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wl-hero-modern-v1 .wl-hc-btn-light {
    background: #fff;
    color: var(--wl-pack-text);
    border: 1.5px solid #fff;
}

.wl-hero-modern-v1 .wl-hc-btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.wl-hero-modern-v1 .wl-hc-btn-dark {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
}

.wl-hero-modern-v1 .wl-hc-btn-dark:hover {
    background: var(--wl-pack-primary);
    border-color: var(--wl-pack-primary);
    transform: translateY(-1px);
}

/* ── Right card ────────────────────────────────────────────────────── */
.wl-hero-modern-v1 .wl-hc-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 46px 36px 40px;
    background: linear-gradient(155deg, #040810 0%, #070E22 55%, #090F2A 100%);
}

.wl-hero-modern-v1 .wl-hc-sm-top {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.wl-hero-modern-v1 .wl-hc-sm-eyebrow {
    font-family: var(--wl-pack-font-heading);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF6200 0%, #FF9A00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.wl-hero-modern-v1 .wl-hc-sm-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.wl-hero-modern-v1 .wl-hc-product-wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 14px 0 0;
    min-height: 0;
}

.wl-hero-modern-v1 .wl-hc-product-wrap img {
    max-width: 78%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}

.wl-hero-modern-v1 .wl-hc-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    font-family: var(--wl-pack-font-heading);
    font-size: clamp(72px, 10vw, 128px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.85;
    text-align: center;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.wl-hero-modern-v1 .wl-hc-sm-para {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.wl-hero-modern-v1 .wl-hc-sm .wl-hc-ctas {
    margin-top: auto;
    padding-top: 16px;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1100px) {

    .wl-hero-modern-v1 .wl-hero-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wl-hero-modern-v1 .wl-hc {
        min-height: 500px;
        border-radius: 26px;
    }

    .wl-hero-modern-v1 .wl-hc-content {
        padding: 40px 32px;
    }

    .wl-hero-modern-v1 .wl-hc-heading {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .wl-hero-modern-v1 {
        padding: 18px 0 36px;
    }

    .wl-hero-modern-v1 .wl-hc {
        min-height: 440px;
        border-radius: 22px;
    }

    .wl-hero-modern-v1 .wl-hc-content {
        padding: 32px 24px;
    }

    .wl-hero-modern-v1 .wl-hc-heading {
        font-size: 32px;
    }

    .wl-hero-modern-v1 .wl-hc-sm {
        padding: 34px 22px 28px;
    }

    .wl-hero-modern-v1 .wl-hc-sm-eyebrow {
        font-size: 24px;
    }

    .wl-hero-modern-v1 .wl-hc-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

/* === Variant: v2 — Cinematic Full-Width ============================== */
.wl-hero-modern-v2 {
    --wl-pack-primary: #7A8F3A;
    height: 100vh;
    min-height: 750px;
    background: #1D1D1B;
    color: #fff;
    display: flex;
}

.wl-hero-modern-v2[data-wl-slider] {
    display: block;
}

.wl-hero-modern-v2[data-wl-slider] .wl-hero-slide {
    height: 100vh;
}

/* Multiple slides with slider disabled: stack each slide as a separate full-viewport section */
.wl-hero-modern-v2.wl-hero-v2-stacked {
    height: auto;
    flex-direction: column;
}

.wl-hero-modern-v2.wl-hero-v2-stacked .wl-hero-slide {
    height: 100vh;
    min-height: 750px;
}

/* Non-active slides hidden until slider JS activates */
.wl-hero-modern-v2 .wl-hero-slide--hidden {
    display: none;
}

/* Each slide fills the full viewport and acts as the positioning context */
.wl-hero-modern-v2 .wl-hero-slide {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ── Background image with slow zoom ──────────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.wl-hero-modern-v2 .wl-hv2-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.7);
    transform: scale(1.05);
    transform-origin: center center;
    animation: wl-hv2-zoom 24s ease-out infinite alternate;
    will-change: transform;
}

@keyframes wl-hv2-zoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

/* ── Directional gradient overlay ─────────────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.45) 40%, rgba(17, 17, 17, 0.05) 80%);
    z-index: 2;
}

/* ── Content container ────────────────────────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.wl-hero-modern-v2 .wl-hv2-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
}

/* ── Eyebrow label with leading line ──────────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--wl-pack-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--wl-pack-primary);
    margin-bottom: 24px;
}

.wl-hero-modern-v2 .wl-hv2-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

/* ── Cinematic heading — each line is a block span ────────────────── */
.wl-hero-modern-v2 .wl-hv2-title {
    font-family: var(--wl-pack-font-heading);
    font-size: clamp(52px, 8.5vw, 110px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -3.5px;
    margin: 0 0 32px;
    color: #fff;
}

.wl-hero-modern-v2 .wl-hv2-title span {
    display: block;
}

.wl-hero-modern-v2 .wl-hv2-title .wl-hl-outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
    color: transparent;
}

/* ── Description ──────────────────────────────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-desc {
    font-family: var(--wl-pack-font-body);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin: 0 0 48px;
}

/* ── CTA buttons ──────────────────────────────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wl-hero-modern-v2 .wl-hv2-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--wl-pack-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.wl-hero-modern-v2 .wl-btn-primary {
    background: var(--wl-pack-primary);
    color: #fff;
    border: 2px solid var(--wl-pack-primary);
}

.wl-hero-modern-v2 .wl-btn-primary:hover {
    filter: brightness(0.88);
    transform: translateY(-2px);
}

.wl-hero-modern-v2 .wl-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.wl-hero-modern-v2 .wl-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Rotated scroll indicator (left edge) ─────────────────────────── */
.wl-hero-modern-v2 .wl-hv2-scroll {
    position: absolute;
    bottom: 0;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--wl-pack-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transform: rotate(-90deg);
    transform-origin: left center;
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
}

.wl-hero-modern-v2 .wl-hv2-scroll::after {
    content: '';
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* ── Glassmorphism stats panel (bottom-right) ─────────────────────── */
.wl-hero-modern-v2 .wl-hv2-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 44px 56px;
    display: flex;
    gap: 56px;
    border-top-left-radius: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.wl-hero-modern-v2 .wl-hv2-stat {
    display: flex;
    flex-direction: column;
}

.wl-hero-modern-v2 .wl-hv2-stat__n {
    font-family: var(--wl-pack-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
    line-height: 1;
}

.wl-hero-modern-v2 .wl-hv2-stat__l {
    font-family: var(--wl-pack-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .wl-hero-modern-v2 {
        height: auto;
        min-height: 100vh;
    }

    .wl-hero-modern-v2 .wl-hv2-container {
        padding: 120px 24px 220px;
    }

    .wl-hero-modern-v2 .wl-hv2-title {
        font-size: clamp(40px, 10vw, 80px);
        letter-spacing: -2px;
    }

    .wl-hero-modern-v2 .wl-hv2-stats {
        gap: 32px;
        padding: 28px 32px;
        border-top-left-radius: 24px;
    }

    .wl-hero-modern-v2 .wl-hv2-stat__n {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .wl-hero-modern-v2 .wl-hv2-container {
        padding: 80px 20px 190px;
    }

    .wl-hero-modern-v2 .wl-hv2-title {
        font-size: clamp(32px, 13vw, 56px);
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .wl-hero-modern-v2 .wl-hv2-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .wl-hero-modern-v2 .wl-hv2-scroll {
        display: none;
    }

    .wl-hero-modern-v2 .wl-hv2-stats {
        gap: 20px;
        padding: 20px 24px;
        border-top-left-radius: 20px;
    }

    .wl-hero-modern-v2 .wl-hv2-stat__n {
        font-size: 22px;
    }

    .wl-hero-modern-v2 .wl-hv2-btn {
        padding: 14px 24px;
        font-size: 10px;
    }
}

/* === Variant: v3 — Split-screen: lifestyle left / product spotlight right === */
.wl-hero-modern-v3 .wl-hero-slide {
    display: grid;
    grid-template-columns: 58% 42%;
    height: calc(76vh + 40px);
    min-height: 540px;
    max-height: 780px;
    border-radius: 14px;
    overflow: hidden;
}

/* PHP hides non-first slides until JS (Slick) takes over */
.wl-hero-modern-v3 .wl-hero-slide--hidden {
    display: none;
}

/* Mode B: Slick active — container becomes the clipping/sizing context */
.wl-hero-modern-v3.slick-initialized {
    position: relative;
    height: calc(76vh + 40px);
    min-height: 540px;
    max-height: 780px;
    border-radius: 14px;
    overflow: hidden;
}

.wl-hero-modern-v3.slick-initialized .slick-list {
    height: 100% !important;
}

.wl-hero-modern-v3.slick-initialized .slick-track,
.wl-hero-modern-v3.slick-initialized .slick-slide,
.wl-hero-modern-v3.slick-initialized .slick-slide>div {
    height: 100%;
}

/* Slides inside Slick fill the container; no border-radius (container clips) */
.wl-hero-modern-v3.slick-initialized .wl-hero-slide {
    height: 100%;
    min-height: 0;
    max-height: none;
    border-radius: 0;
}

/* ── Left panel: lifestyle photo with text overlay ─────────────────── */
.wl-hero-modern-v3 .wl-hv3-left {
    position: relative;
    overflow: hidden;
}

.wl-hero-modern-v3 .wl-hv3-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.wl-hero-modern-v3 .wl-hv3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(12, 11, 9, 0.72) 0%,
            rgba(12, 11, 9, 0.18) 45%,
            transparent 65%);
    pointer-events: none;
}

.wl-hero-modern-v3 .wl-hv3-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 60px;
    z-index: 2;
}

.wl-hero-modern-v3 .wl-hv3-eyebrow {
    font-family: var(--wl-pack-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wl-pack-primary);
    margin-bottom: 12px;
    display: block;
}

.wl-hero-modern-v3 .wl-hv3-heading {
    font-family: var(--wl-pack-font-heading);
    font-size: clamp(28px, 3.8vw, 64px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
}

.wl-hero-modern-v3 .wl-hv3-heading .wl-hl {
    background: linear-gradient(90deg, #FF6B35 0%, #FF9F1C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wl-hero-modern-v3 .wl-hv3-subtext {
    font-family: var(--wl-pack-font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 420px;
}

.wl-hero-modern-v3 .wl-hv3-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wl-hero-modern-v3 .wl-hv3-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--wl-pack-font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.wl-hero-modern-v3 .wl-hv3-btn--primary {
    background: #fff;
    color: #111;
    border: 2px solid #fff;
}

.wl-hero-modern-v3 .wl-hv3-btn--primary:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: translateY(-1px);
}

.wl-hero-modern-v3 .wl-hv3-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.wl-hero-modern-v3 .wl-hv3-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Right panel: warm taupe spotlight ─────────────────────────────── */
.wl-hero-modern-v3 .wl-hv3-right {
    background: #857D74;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 48px 44px 32px;
}

/* ── Product card ──────────────────────────────────────────────────── */
.wl-hero-modern-v3 .wl-hv3-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    width: 100%;
}

.wl-hero-modern-v3 .wl-hv3-product-img-wrap {
    width: 240px;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32), 0 4px 14px rgba(0, 0, 0, 0.20);
    margin-bottom: 28px;
    background: #D8D2C8;
}

.wl-hero-modern-v3 .wl-hv3-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wl-hero-modern-v3 .wl-hv3-product-name {
    font-family: var(--wl-pack-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin: 0 0 8px;
}

.wl-hero-modern-v3 .wl-hv3-product-price {
    font-family: var(--wl-pack-font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    margin: 0;
}

/* ── Slick nav repositioned to bottom-right of the right panel ─────── */
[data-wl-pack] .wl-hero-modern-v3 .wl-pack-nav {
    position: absolute;
    top: auto;
    transform: none;
    bottom: 28px;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    z-index: 10;
}

[data-wl-pack] .wl-hero-modern-v3 .wl-pack-nav-prev {
    left: auto;
    right: 74px;
}

[data-wl-pack] .wl-hero-modern-v3 .wl-pack-nav-next {
    right: 28px;
}

[data-wl-pack] .wl-hero-modern-v3 .wl-pack-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.40);
    transform: scale(1.05);
}

/* ── Controls row: counter only ────────────────────────────────────── */
.wl-hero-modern-v3 .wl-hv3-controls {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 24px;
}

.wl-hero-modern-v3 .wl-hv3-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wl-hero-modern-v3 .wl-hv3-counter-num {
    font-family: var(--wl-pack-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
}

.wl-hero-modern-v3 .wl-hv3-counter-num--active {
    color: #fff;
}

.wl-hero-modern-v3 .wl-hv3-counter-track {
    width: 60px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.wl-hero-modern-v3 .wl-hv3-counter-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .wl-hero-modern-v3 .wl-hv3-product-img-wrap {
        width: 200px;
    }
}

@media (max-width: 900px) {
    .wl-hero-modern-v3 .wl-hv3-right {
        padding: 36px 32px 24px;
    }

    .wl-hero-modern-v3 .wl-hv3-text {
        padding: 36px;
    }

    .wl-hero-modern-v3 .wl-hv3-product-img-wrap {
        width: 170px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .wl-hero-modern-v3 .wl-hero-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 58% 42%;
        height: 82vh;
        max-height: 680px;
    }

    .wl-hero-modern-v3.slick-initialized {
        height: 82vh;
        max-height: 680px;
    }

    .wl-hero-modern-v3 .wl-hv3-right {
        padding: 24px 28px 20px;
    }

    .wl-hero-modern-v3 .wl-hv3-product-img-wrap {
        width: 110px;
        aspect-ratio: 1;
        margin-bottom: 14px;
    }

    .wl-hero-modern-v3 .wl-hv3-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .wl-hero-modern-v3 .wl-hero-slide {
        height: 76vh;
        max-height: 620px;
    }

    .wl-hero-modern-v3.slick-initialized {
        height: 76vh;
        max-height: 620px;
    }

    .wl-hero-modern-v3 .wl-hv3-text {
        padding: 24px;
    }

    .wl-hero-modern-v3 .wl-hv3-heading {
        font-size: 24px;
    }
}

/* === Variant: v3 ===================================================== */
.wl-hero-modern-v3 {
    font-family: var(--wl-pack-font-body);
}

.wl-hero-modern-v3 .wl-hero-inner {
    display: grid;
    grid-template-columns: 6px 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.wl-hero-modern-v3 .wl-hero-stripe {
    width: 6px;
    height: 120px;
    background: var(--wl-pack-primary);
    border-radius: 3px;
    align-self: center;
}

.wl-hero-modern-v3 .wl-hero-eyebrow {
    display: block;
    font-size: var(--wl-pack-text-xs);
    font-weight: 700;
    color: var(--wl-pack-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wl-hero-modern-v3 .wl-hero-heading {
    font-family: var(--wl-pack-font-heading);
    font-size: var(--wl-pack-text-2xl);
    font-weight: 700;
    color: var(--wl-pack-text);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.wl-hero-modern-v3 .wl-hero-description {
    font-size: var(--wl-pack-text-base);
    color: var(--wl-pack-text-muted);
    line-height: 1.6;
    margin: 0 0 28px;
}

.wl-hero-modern-v3 .wl-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.wl-hero-modern-v3 .wl-btn {
    font-family: var(--wl-pack-font-body);
    font-size: var(--wl-pack-text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wl-hero-modern-v3 .wl-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--wl-pack-btn-bg);
    color: var(--wl-pack-btn-text);
    border: 2px solid var(--wl-pack-btn-bg);
    padding: 13px 28px;
    border-radius: var(--wl-pack-btn-radius);
}

.wl-hero-modern-v3 .wl-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.wl-hero-modern-v3 .wl-btn-link {
    color: var(--wl-pack-text);
    border-bottom: 1px solid var(--wl-pack-border);
    padding-bottom: 2px;
}

.wl-hero-modern-v3 .wl-btn-link:hover {
    color: var(--wl-pack-primary);
    border-color: var(--wl-pack-primary);
}

.wl-hero-modern-v3 .wl-hero-media {
    border-radius: var(--wl-pack-radius-card);
    overflow: hidden;
}

.wl-hero-modern-v3 .wl-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .wl-hero-modern-v3 .wl-hero-inner {
        grid-template-columns: 1fr;
    }

    .wl-hero-modern-v3 .wl-hero-stripe {
        display: none;
    }

    .wl-hero-modern-v3 .wl-hero-heading {
        font-size: var(--wl-pack-text-xl);
    }
}