.hb-6f87eb71-wrapper {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hb-6f87eb71-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hb-6f87eb71-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.hb-6f87eb71-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hb-6f87eb71-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: all 1s ease-out;
}

/* Animations for Image */
.hb-6f87eb71-wrapper[data-anim-image="zoom-in"] .hb-6f87eb71-slide-bg {
    transform: scale(1.1);
}
.hb-6f87eb71-wrapper[data-anim-image="zoom-in"] .hb-6f87eb71-slide.active .hb-6f87eb71-slide-bg {
    transform: scale(1);
}

.hb-6f87eb71-wrapper[data-anim-image="slide-left"] .hb-6f87eb71-slide-bg {
    transform: translateX(5%);
}
.hb-6f87eb71-wrapper[data-anim-image="slide-left"] .hb-6f87eb71-slide.active .hb-6f87eb71-slide-bg {
    transform: translateX(0);
}

.hb-6f87eb71-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hb-6f87eb71-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.hb-6f87eb71-controls-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 20px;
}

.hb-6f87eb71-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    justify-content: center;
}

.hb-6f87eb71-subtitle-wrap {
    display: flex;
}

.hb-6f87eb71-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 15px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.hb-6f87eb71-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

/* Text Animations */
.hb-6f87eb71-wrapper[data-anim-text="fade-up"] .hb-6f87eb71-slide .hb-6f87eb71-subtitle,
.hb-6f87eb71-wrapper[data-anim-text="fade-up"] .hb-6f87eb71-slide .hb-6f87eb71-heading {
    opacity: 0;
    transform: translateY(20px);
}
.hb-6f87eb71-wrapper[data-anim-text="fade-up"] .hb-6f87eb71-slide.active .hb-6f87eb71-subtitle,
.hb-6f87eb71-wrapper[data-anim-text="fade-up"] .hb-6f87eb71-slide.active .hb-6f87eb71-heading {
    opacity: 1;
    transform: translateY(0);
}

.hb-6f87eb71-wrapper[data-anim-text="fade-in"] .hb-6f87eb71-slide .hb-6f87eb71-subtitle,
.hb-6f87eb71-wrapper[data-anim-text="fade-in"] .hb-6f87eb71-slide .hb-6f87eb71-heading {
    opacity: 0;
}
.hb-6f87eb71-wrapper[data-anim-text="fade-in"] .hb-6f87eb71-slide.active .hb-6f87eb71-subtitle,
.hb-6f87eb71-wrapper[data-anim-text="fade-in"] .hb-6f87eb71-slide.active .hb-6f87eb71-heading {
    opacity: 1;
}

.hb-6f87eb71-wrapper[data-anim-text="zoom-in"] .hb-6f87eb71-slide .hb-6f87eb71-subtitle,
.hb-6f87eb71-wrapper[data-anim-text="zoom-in"] .hb-6f87eb71-slide .hb-6f87eb71-heading {
    opacity: 0;
    transform: scale(0.95);
}
.hb-6f87eb71-wrapper[data-anim-text="zoom-in"] .hb-6f87eb71-slide.active .hb-6f87eb71-subtitle,
.hb-6f87eb71-wrapper[data-anim-text="zoom-in"] .hb-6f87eb71-slide.active .hb-6f87eb71-heading {
    opacity: 1;
    transform: scale(1);
}

.hb-6f87eb71-heading .focus-text {
    font-weight: 800;
}

/* Static Content is always visible */
.hb-6f87eb71-static-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease 0.4s;
}

.hb-6f87eb71-slide.active .hb-6f87eb71-static-content {
    opacity: 1;
}

.hb-6f87eb71-desc {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.5;
    margin: 0;
}

.hb-6f87eb71-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hb-6f87eb71-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.hb-6f87eb71-btn-secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.hb-6f87eb71-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hb-6f87eb71-stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hb-6f87eb71-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.hb-6f87eb71-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.hb-6f87eb71-pagination {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

/* Dot reset (high specificity beats Woodmart's global button styles) */
.hb-6f87eb71-wrapper .hb-6f87eb71-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hb-6f87eb71-wrapper .hb-6f87eb71-dot.active,
.hb-6f87eb71-wrapper .hb-6f87eb71-dot:hover {
    background-color: #fff;
}

/* ===== Tablet (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hb-6f87eb71-heading {
        font-size: 3rem;
    }

    .hb-6f87eb71-wrapper {
        min-height: 480px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .hb-6f87eb71-slide {
        padding: 150px 20px 70px;
    }

    .hb-6f87eb71-content {
        gap: 14px;
    }

    .hb-6f87eb71-heading {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hb-6f87eb71-subtitle {
        font-size: 0.95rem;
        padding: 4px 12px;
    }

    .hb-6f87eb71-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hb-6f87eb71-controls-container {
        bottom: 20px;
    }

    .hb-6f87eb71-stats {
        gap: 20px;
        justify-content: space-between;
        width: 100%;
    }

    .hb-6f87eb71-stat-val {
        font-size: 1.5rem;
    }

    .hb-6f87eb71-stat-label {
        font-size: 0.75rem;
    }

    /* Stack buttons + make them full width on mobile (via widget toggle) */
    .hb-6f87eb71-fullbtn-mobile .hb-6f87eb71-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hb-6f87eb71-fullbtn-mobile .hb-6f87eb71-btn {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {
    .hb-6f87eb71-slide {
        padding: 130px 16px 80px;
        justify-content: center;
    }

    .hb-6f87eb71-content {
        align-items: center;
        text-align: center;
    }

    .hb-6f87eb71-subtitle-wrap,
    .hb-6f87eb71-actions,
    .hb-6f87eb71-stats,
    .hb-6f87eb71-pagination {
        justify-content: center;
    }

    .hb-6f87eb71-heading {
        font-size: 1.8rem;
    }

    .hb-6f87eb71-desc {
        font-size: 0.9rem;
    }

    .hb-6f87eb71-stats {
        gap: 16px;
        margin-top: 12px;
    }

    .hb-6f87eb71-stat-val {
        font-size: 1.35rem;
    }

    .hb-6f87eb71-stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }
}