/**
 * Bakala Theme - GSAP & Animations Styles
 * Modern, High-Performance, GPU-Accelerated CSS
 * Version: 1.0.0
 */

/* ==========================================================================
   1. Smooth Scroll (Lenis Engine)
   ========================================================================== */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ==========================================================================
   2. GSAP Base & Utility Classes
   ========================================================================== */
.bk-gsap-gpu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.bk-gsap-overflow-hidden {
    overflow: hidden;
}

/* ==========================================================================
   3. GSAP Product Carousel Widget Styles
   ========================================================================== */
.bk-gsap-carousel-widget {
    position: relative;
    width: 100%;
    margin: 25px 0;
    padding: 10px 0;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.bk-gsap-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 12px;
}

.bk-gsap-carousel-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bk-gsap-carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 75, 43, 0.35);
    animation: bkPulse 2.4s infinite;
}

@keyframes bkPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(255, 75, 43, 0.35);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 6px 20px rgba(255, 75, 43, 0.55);
    }
}

.bk-gsap-carousel-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-gsap-carousel-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* Nav Controls */
.bk-gsap-carousel-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-gsap-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    outline: none;
}

.bk-gsap-nav-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.bk-gsap-nav-btn:active {
    transform: scale(0.92);
}

.bk-gsap-nav-btn svg, .bk-gsap-nav-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.bk-gsap-nav-btn:hover svg, .bk-gsap-nav-btn:hover i {
    transform: scale(1.1);
}

/* Carousel Viewport & Track */
.bk-gsap-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0 24px 0;
    cursor: -webkit-grab;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
}

.bk-gsap-carousel-viewport.is-dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.bk-gsap-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* Product Card */
.bk-gsap-product-card {
    position: relative;
    flex: 0 0 auto;
    width: 270px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(241, 245, 249, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    transform: translateY(0);
}

.bk-gsap-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(203, 213, 225, 0.8);
}

/* Card Image Box */
.bk-gsap-card-media {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect ratio */
    background: #f8fafc;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.bk-gsap-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.bk-gsap-product-card:hover .bk-gsap-card-media img {
    transform: scale(1.05);
}

/* Discount & Stock Badges */
.bk-gsap-card-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 2;
}

.bk-gsap-card-stock-status {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
}

/* Floating Actions Bar */
.bk-gsap-card-actions {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 8px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.bk-gsap-product-card:hover .bk-gsap-card-actions {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.bk-gsap-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bk-gsap-action-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.12);
}

/* Card Content */
.bk-gsap-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.bk-gsap-card-cat {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
}

.bk-gsap-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 12px 0;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

.bk-gsap-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bk-gsap-card-title a:hover {
    color: #3b82f6;
}

/* Card Price Row */
.bk-gsap-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    margin-top: auto;
    min-height: 46px;
}

.bk-gsap-card-prices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.bk-gsap-card-prices del {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.85;
    margin-bottom: 2px;
    font-weight: 500;
    display: block;
}

.bk-gsap-card-prices del .amount,
.bk-gsap-card-prices del bdi {
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-size: 11px !important;
}

.bk-gsap-card-prices ins {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    display: block;
}

.bk-gsap-card-prices ins .amount,
.bk-gsap-card-prices ins bdi,
.bk-gsap-card-prices > .amount,
.bk-gsap-card-prices > bdi,
.bk-gsap-card-prices > span {
    font-weight: 800;
    color: #0f172a;
}

.bk-gsap-card-prices .woocommerce-Price-currencySymbol {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    margin-right: 3px;
}

body.rtl .bk-gsap-card-prices {
    align-items: flex-start;
}

body.rtl .bk-gsap-card-prices .woocommerce-Price-currencySymbol {
    margin-right: 0;
    margin-left: 3px;
}

.bk-gsap-add-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
}

.bk-gsap-add-btn:hover {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.bk-gsap-add-btn.loading,
.bk-gsap-add-btn.adding_to_cart {
    opacity: 0.9;
    pointer-events: none;
}

.bk-gsap-add-btn.loading > svg,
.bk-gsap-add-btn.loading > i,
.bk-gsap-add-btn.adding_to_cart > svg,
.bk-gsap-add-btn.adding_to_cart > i {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
}

.bk-gsap-add-btn .dot-flashing,
.bk-gsap-add-btn.loading .dot-flashing,
.bk-gsap-add-btn.adding_to_cart .dot-flashing {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 4px !important;
    height: 4px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #ffffff !important;
    display: block !important;
    animation: dotFlashingGsap 1s infinite linear alternate !important;
    animation-delay: 0.4s !important;
}

.bk-gsap-add-btn .dot-flashing::before,
.bk-gsap-add-btn .dot-flashing::after {
    content: '' !important;
    display: inline-block !important;
    position: absolute !important;
    top: 0 !important;
    width: 4px !important;
    height: 4px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #ffffff !important;
    animation: dotFlashingGsap 1s infinite alternate !important;
}

.bk-gsap-add-btn .dot-flashing::before {
    left: -7px !important;
    right: auto !important;
    animation-delay: 0s !important;
}

.bk-gsap-add-btn .dot-flashing::after {
    left: 7px !important;
    right: auto !important;
    animation-delay: 0.8s !important;
}

@keyframes dotFlashingGsap {
    0% {
        background-color: #ffffff;
        opacity: 1;
    }
    50%, 100% {
        background-color: rgba(255, 255, 255, 0.25);
        opacity: 0.3;
    }
}

/* Progress Bar indicator */
.bk-gsap-carousel-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 16px;
    overflow: hidden;
}

.bk-gsap-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 4px;
    transition: width 0.15s ease-out, transform 0.15s ease-out;
}

/* ==========================================================================
   4. RTL (Right-To-Left) Adjustments
   ========================================================================== */
body.rtl .bk-gsap-card-discount {
    right: auto;
    left: 12px;
}

body.rtl .bk-gsap-card-stock-status {
    left: auto;
    right: 12px;
}

body.rtl .bk-gsap-current-price .currency {
    margin-right: 0;
    margin-left: 4px;
}

body.rtl .bk-gsap-progress-bar {
    left: auto;
    right: 0;
}

/* ==========================================================================
   5. Dark Mode Compatibility
   ========================================================================== */
body.darkmode .bk-gsap-product-card,
body.theme-dark .bk-gsap-product-card,
body.dark-mode .bk-gsap-product-card,
#site.dark .bk-gsap-product-card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

body.darkmode .bk-gsap-card-media,
body.theme-dark .bk-gsap-card-media,
body.dark-mode .bk-gsap-card-media,
#site.dark .bk-gsap-card-media {
    background: #0f172a;
}

body.darkmode .bk-gsap-carousel-title,
body.theme-dark .bk-gsap-carousel-title,
body.dark-mode .bk-gsap-carousel-title,
#site.dark .bk-gsap-carousel-title,
body.darkmode .bk-gsap-card-title,
body.theme-dark .bk-gsap-card-title,
body.dark-mode .bk-gsap-card-title,
#site.dark .bk-gsap-card-title {
    color: #f8fafc;
}

body.darkmode .bk-gsap-nav-btn,
body.theme-dark .bk-gsap-nav-btn,
body.dark-mode .bk-gsap-nav-btn,
#site.dark .bk-gsap-nav-btn {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

body.darkmode .bk-gsap-nav-btn:hover,
body.theme-dark .bk-gsap-nav-btn:hover,
body.dark-mode .bk-gsap-nav-btn:hover,
#site.dark .bk-gsap-nav-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

body.darkmode .bk-gsap-card-footer,
body.theme-dark .bk-gsap-card-footer,
body.dark-mode .bk-gsap-card-footer,
#site.dark .bk-gsap-card-footer {
    border-color: #334155;
}

body.darkmode .bk-gsap-current-price,
body.theme-dark .bk-gsap-current-price,
body.dark-mode .bk-gsap-current-price,
#site.dark .bk-gsap-current-price {
    color: #f1f5f9;
}

body.darkmode .bk-gsap-add-btn,
body.theme-dark .bk-gsap-add-btn,
body.dark-mode .bk-gsap-add-btn,
#site.dark .bk-gsap-add-btn {
    background: #334155;
    color: #f8fafc;
}

body.darkmode .bk-gsap-add-btn:hover,
body.theme-dark .bk-gsap-add-btn:hover,
body.dark-mode .bk-gsap-add-btn:hover,
#site.dark .bk-gsap-add-btn:hover {
    background: #3b82f6;
}

body.darkmode .bk-gsap-carousel-progress,
body.theme-dark .bk-gsap-carousel-progress,
body.dark-mode .bk-gsap-carousel-progress,
#site.dark .bk-gsap-carousel-progress {
    background: #334155;
}

/* ==========================================================================
   6. Infinite Marquee Widget
   ========================================================================== */
.bk-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 14px 0;
    margin: 16px 0;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    user-select: none;
    -webkit-user-select: none;
}

.bk-marquee-wrap.has-fade-edges {
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.bk-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.bk-marquee-group {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    padding-right: 40px;
}

body.rtl .bk-marquee-group {
    padding-right: 0;
    padding-left: 40px;
}

.bk-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.bk-marquee-item:hover {
    transform: scale(1.04);
}

.bk-marquee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3b82f6;
}

.bk-marquee-img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.8) opacity(0.75);
    transition: all 0.3s ease;
    pointer-events: none;
}

.bk-marquee-item:hover .bk-marquee-img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.08);
}

/* ==========================================================================
   7. Parallax Banner Widget
   ========================================================================== */
.bk-parallax-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 40px;
    min-height: 340px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.bk-banner-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.bk-banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.18);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
    margin-bottom: 14px;
}

.bk-banner-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.bk-banner-desc {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 24px 0;
    max-width: 520px;
}

.bk-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.bk-banner-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.bk-banner-btn svg {
    transition: transform 0.25s ease;
}

.bk-banner-btn:hover svg {
    transform: translateX(-4px);
}

body.rtl .bk-banner-btn:hover svg {
    transform: translateX(-4px);
}

.bk-banner-media-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.bk-banner-main-img-wrap {
    width: 100%;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bk-banner-main-img,
.bk-banner-main-img-wrap img {
    max-width: 100% !important;
    max-height: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
    will-change: transform;
}

.bk-banner-floating-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    will-change: transform;
}

body.rtl .bk-banner-floating-badge {
    left: auto;
    right: 10px;
}

/* ==========================================================================
   8. Dark Mode Compatibility & Responsive
   ========================================================================== */
body.darkmode .bk-marquee-wrap,
body.theme-dark .bk-marquee-wrap,
body.dark-mode .bk-marquee-wrap,
#site.dark .bk-marquee-wrap {
    background-color: #1e293b;
}

body.darkmode .bk-marquee-item,
body.theme-dark .bk-marquee-item,
body.dark-mode .bk-marquee-item,
#site.dark .bk-marquee-item {
    color: #f1f5f9;
}

@media (max-width: 768px) {
    .bk-gsap-product-card {
        width: 220px;
    }
    .bk-gsap-card-title {
        font-size: 13px;
        min-height: 38px;
    }
    .bk-gsap-current-price {
        font-size: 14px;
    }
    .bk-gsap-carousel-title {
        font-size: 17px;
    }
    .bk-gsap-nav-btn {
        width: 36px;
        height: 36px;
    }
    .bk-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bk-banner-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .bk-banner-btn {
        justify-content: center;
    }
    .bk-banner-media-wrap {
        margin-top: 20px;
    }
}

/* ==========================================================================
   9. Advanced Image Slider
   ========================================================================== */
.bk-img-slider-wrap {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 20px;
    user-select: none;
    -webkit-user-select: none;
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bk-img-slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.bk-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bk-img-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.bk-slide-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.bk-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

body.rtl .bk-slide-overlay {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.bk-slide-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    max-width: 680px;
    color: #ffffff;
}

.bk-slide-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.bk-slide-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.bk-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.bk-slide-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.bk-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

body.rtl .bk-slider-nav {
    left: auto;
    right: 40px;
}

.bk-slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.bk-slider-btn:hover {
    background: #ffffff;
    color: #0f172a;
    transform: scale(1.08);
}

.bk-slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

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

.bk-slider-dot.is-active {
    width: 26px;
    border-radius: 10px;
    background: #3b82f6;
}

/* ==========================================================================
   10. Kinetic Text Typography Effects
   ========================================================================== */
.bk-kinetic-text-wrap {
    position: relative;
    width: 100%;
    display: block;
    overflow: visible;
    margin: 15px 0;
}

.bk-kinetic-text {
    margin: 0;
    padding: 0;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.45;
    letter-spacing: -0.01em;
    perspective: 1200px;
}

body.darkmode .bk-kinetic-text,
body.theme-dark .bk-kinetic-text,
body.dark-mode .bk-kinetic-text,
#site.dark .bk-kinetic-text {
    color: #f8fafc;
}

.bk-kinetic-text .bk-word {
    display: inline-block;
    white-space: nowrap;
    margin-left: 0.28em;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

body.rtl .bk-kinetic-text .bk-word {
    margin-left: 0;
    margin-right: 0.28em;
}

.bk-kinetic-text .bk-char {
    display: inline-block;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

.bk-kinetic-text .bk-chunk {
    display: inline-block;
    white-space: normal;
    margin-left: 0.4em;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

body.rtl .bk-kinetic-text .bk-chunk {
    margin-left: 0;
    margin-right: 0.4em;
}

/* ==========================================================================
   11. 3D Stacking Cards (Scroll Pinned Deck)
   ========================================================================== */
.bk-stacking-cards-wrap {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.bk-stacking-cards-list {
    position: relative;
    width: 100%;
}

.bk-stack-card {
    position: sticky;
    top: 100px;
    width: 100%;
    min-height: 380px;
    border-radius: 28px;
    color: #ffffff;
    padding: 44px;
    margin-bottom: 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transform-origin: top center;
    will-change: transform, filter, opacity;
    display: flex;
    align-items: center;
}

.bk-stack-card-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.bk-stack-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 14px;
}

.bk-stack-card-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.bk-stack-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0 0 24px 0;
}

.bk-stack-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a !important;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.bk-stack-card-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.bk-stack-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-stack-card-img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.25));
}

/* ==========================================================================
   12. Interactive Before / After Comparison Slider
   ========================================================================== */
.bk-before-after-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: ew-resize;
}

.bk-ba-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bk-ba-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.bk-ba-after {
    width: 50%;
    z-index: 2;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.bk-ba-tag {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.bk-ba-tag-before {
    right: 16px;
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
}

.bk-ba-tag-after {
    left: 16px;
    background: rgba(59, 130, 246, 0.9);
    color: #ffffff;
}

body.rtl .bk-ba-tag-before {
    right: auto;
    left: 16px;
}

body.rtl .bk-ba-tag-after {
    left: auto;
    right: 16px;
}

.bk-ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.bk-ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.bk-ba-button {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #3b82f6;
    transition: transform 0.2s ease;
}

.bk-ba-handle:hover .bk-ba-button {
    transform: scale(1.1);
}
/* ==========================================================================
   14. Exploded Product Showcase
   ========================================================================== */
.bk-exploded-showcase-wrap {
    position: relative;
    width: 100%;
    min-height: 700px;
    padding: 60px 20px;
    overflow: hidden;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bk-exploded-ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(15, 23, 42, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bk-exploded-header {
    text-align: center;
    margin-bottom: 35px;
    z-index: 2;
}

.bk-exploded-badge {
    display: inline-flex;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.35);
    margin-bottom: 10px;
}

.bk-exploded-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.bk-exploded-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-exploded-product-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-exploded-main-img {
    max-width: 320px;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.bk-exploded-callouts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bk-exploded-card {
    position: absolute;
    z-index: 3;
    pointer-events: auto;
    width: 280px;
}

.bk-exploded-card.bk-pos-top-right {
    top: 30px;
    right: 40px;
}

.bk-exploded-card.bk-pos-top-left {
    top: 30px;
    left: 40px;
}

.bk-exploded-card.bk-pos-bottom-right {
    bottom: 30px;
    right: 40px;
}

.bk-exploded-card.bk-pos-bottom-left {
    bottom: 30px;
    left: 40px;
}

.bk-exploded-card-box {
    background: rgba(30, 41, 59, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.bk-exploded-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.bk-exploded-card-desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   15. Glowing SVG Path Timeline
   ========================================================================== */
.bk-glowing-timeline-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 40px auto;
    padding: 40px 0;
}

.bk-timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
}

.bk-timeline-track-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #e2e8f0;
    border-radius: 4px;
}

body.darkmode .bk-timeline-track-bg,
body.theme-dark .bk-timeline-track-bg,
#site.dark .bk-timeline-track-bg {
    background: #334155;
}

.bk-timeline-glow-beam {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0%;
    background: #3b82f6;
    box-shadow: 0 0 16px #3b82f6;
    border-radius: 4px;
}

.bk-timeline-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.bk-timeline-item {
    position: relative;
    display: flex;
    width: 100%;
}

.bk-timeline-item.bk-timeline-right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.bk-timeline-item.bk-timeline-left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

body.rtl .bk-timeline-item.bk-timeline-right {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: calc(50% + 40px);
}

body.rtl .bk-timeline-item.bk-timeline-left {
    justify-content: flex-end;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.bk-timeline-node {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--node-color, #3b82f6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
    z-index: 4;
}

.bk-timeline-node.is-active {
    transform: translateX(-50%) scale(1.25);
    box-shadow: 0 0 20px var(--node-color, #3b82f6);
}

.bk-timeline-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 26px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    max-width: 440px;
    width: 100%;
}

body.darkmode .bk-timeline-card,
body.theme-dark .bk-timeline-card,
#site.dark .bk-timeline-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.bk-timeline-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.bk-timeline-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

body.darkmode .bk-timeline-card-title,
body.theme-dark .bk-timeline-card-title,
#site.dark .bk-timeline-card-title {
    color: #f8fafc;
}

.bk-timeline-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   16. Magnetic Custom Cursor
   ========================================================================== */
.bk-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--bk-cursor-outline, #3b82f6);
    background: transparent;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), height 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s, border-color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bk-cursor-color, #3b82f6);
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

.bk-cursor-follower.is-hover {
    width: 56px;
    height: 56px;
    background: var(--bk-cursor-hover-bg, rgba(59, 130, 246, 0.14)) !important;
    border-color: var(--bk-cursor-outline, #2563eb) !important;
}

.bk-cursor-follower.has-label {
    width: 70px;
    height: 70px;
    background: #0f172a;
    border-color: #0f172a;
}

.bk-cursor-label {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.bk-cursor-follower.has-label .bk-cursor-label {
    opacity: 1;
}

/* ==========================================================================
   17. Modern Lightweight SPA Top Loader
   ========================================================================== */
.bk-spa-top-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    z-index: 99999999;
    pointer-events: none;
    background: transparent;
    transition: opacity 0.2s ease;
}

.bk-spa-loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8), 0 0 4px rgba(6, 182, 212, 0.6);
    border-radius: 0 3px 3px 0;
}

/* ==========================================================================
   18. Top Scroll Progress Bar
   ========================================================================== */
.bk-scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    z-index: 99999;
    border-radius: 0 4px 4px 0;
    pointer-events: none;
    box-shadow: 0 1px 8px rgba(59, 130, 246, 0.4);
}

/* ==========================================================================
   19. Magnetic Button Class
   ========================================================================== */
.bk-magnetic-btn {
    display: inline-flex;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

/* ==========================================================================
   20. Pinned Vertical Showcase (Apple / Stripe Style)
   ========================================================================== */
.bk-pinned-vertical-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.bk-pinned-vertical-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
    position: relative;
}

body.rtl .bk-pinned-vertical-grid {
    grid-template-columns: 1fr 1.15fr;
}

.bk-pinned-steps-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 80px;
}

.bk-pinned-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

body.darkmode .bk-pinned-step-card,
body.theme-dark .bk-pinned-step-card,
#site.dark .bk-pinned-step-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.bk-pinned-step-card.is-active {
    border-color: #3b82f6;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.12);
    transform: translateY(-3px);
}

.bk-pinned-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bk-pinned-step-num {
    font-size: 18px;
    font-weight: 900;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 10px;
}

.bk-pinned-step-badge {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 8px;
}

body.darkmode .bk-pinned-step-badge,
body.theme-dark .bk-pinned-step-badge,
#site.dark .bk-pinned-step-badge {
    background: #334155;
    color: #94a3b8;
}

.bk-pinned-step-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

body.darkmode .bk-pinned-step-title,
body.theme-dark .bk-pinned-step-title,
#site.dark .bk-pinned-step-title {
    color: #f8fafc;
}

.bk-pinned-step-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 20px 0;
}

body.darkmode .bk-pinned-step-desc,
body.theme-dark .bk-pinned-step-desc,
#site.dark .bk-pinned-step-desc {
    color: #94a3b8;
}

.bk-pinned-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 800;
    color: #3b82f6 !important;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.bk-pinned-step-btn:hover {
    gap: 12px;
}

.bk-pinned-sticky-col {
    position: sticky;
    top: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}

.bk-pinned-sticky-inner {
    width: 100%;
    height: 100%;
}

.bk-pinned-preview-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bk-pinned-preview-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(15, 23, 42, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bk-pinned-preview-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
    z-index: 1;
}

.bk-pinned-preview-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.bk-pinned-preview-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
}

@media (max-width: 900px) {
    .bk-pinned-vertical-grid {
        grid-template-columns: 1fr;
    }
    .bk-pinned-sticky-col {
        position: relative;
        top: 0;
        height: 340px;
        order: -1;
        margin-bottom: 24px;
    }
}

/* ==========================================================================
   20. Center Stage Peek Image Slider (Partial Previews on Sides)
   ========================================================================== */
.bk-peek-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 35px 0;
    user-select: none;
}

.bk-peek-slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    perspective: 1400px;
    -webkit-perspective: 1400px;
    transform-style: preserve-3d;
}

.bk-peek-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.bk-peek-slide {
    position: absolute;
    width: 62%;
    max-width: 780px;
    height: 92%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    background: #0f172a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.4s ease;
}

.bk-peek-slide.is-active {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.bk-peek-slide:not(.is-active) {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.bk-peek-slide:not(.is-active):hover {
    filter: brightness(0.88) !important;
}

.bk-peek-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    display: block;
}

.bk-peek-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
}

.bk-peek-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 40px;
    color: #fff;
    z-index: 2;
    pointer-events: none;
}

.bk-peek-content a,
.bk-peek-content button {
    pointer-events: auto;
}

.bk-peek-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
}

.bk-peek-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 8px 0;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bk-peek-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin: 0 0 18px 0;
    max-width: 540px;
}

.bk-peek-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0f172a !important;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bk-peek-btn:hover {
    transform: translateY(-2px);
    background: #f8fafc;
}

.bk-peek-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s, background-color 0.2s;
}

.bk-peek-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.bk-peek-prev {
    left: 24px;
}

.bk-peek-next {
    right: 24px;
}

.bk-peek-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.bk-peek-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.bk-peek-dot.is-active {
    width: 28px;
    background: #3b82f6;
    border-radius: 999px;
}

/* ==========================================================================
   21. Comprehensive Mobile & Tablet Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    /* Glowing Timeline Mobile Responsive */
    .bk-glowing-timeline-wrap {
        padding: 20px 8px !important;
        margin: 20px auto !important;
    }

    .bk-timeline-track {
        left: 20px !important;
        right: auto !important;
        transform: none !important;
    }

    body.rtl .bk-timeline-track {
        right: 20px !important;
        left: auto !important;
        transform: none !important;
    }

    .bk-timeline-items {
        gap: 28px !important;
    }

    .bk-timeline-item,
    .bk-timeline-item.bk-timeline-right,
    .bk-timeline-item.bk-timeline-left {
        justify-content: flex-start !important;
        padding-left: 48px !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    body.rtl .bk-timeline-item,
    body.rtl .bk-timeline-item.bk-timeline-right,
    body.rtl .bk-timeline-item.bk-timeline-left {
        justify-content: flex-start !important;
        padding-right: 48px !important;
        padding-left: 0 !important;
        width: 100% !important;
    }

    .bk-timeline-node {
        left: 11px !important;
        right: auto !important;
        top: 18px !important;
        transform: none !important;
        width: 18px !important;
        height: 18px !important;
    }
.bk-gsap-carousel-badge {
    padding: 5px 10px;
    font-size: 10px;
    min-width: 100px
}
    body.rtl .bk-timeline-node {
        right: 5px !important;
        left: auto !important;
        transform: none !important;
    }

    .bk-timeline-node.is-active {
        transform: scale(1.2) !important;
    }

    .bk-timeline-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 18px 20px !important;
        border-radius: 16px !important;
    }

    .bk-timeline-card-title {
        font-size: 16px !important;
    }

    .bk-timeline-card-desc {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    /* Exploded Product Showcase Mobile Responsive */
    .bk-exploded-showcase-wrap {
        min-height: auto !important;
        padding: 40px 16px !important;
    }

    .bk-exploded-title {
        font-size: 22px !important;
    }

    .bk-exploded-ambient-glow {
        width: 240px !important;
        height: 240px !important;
    }

    .bk-exploded-stage {
        height: auto !important;
        max-height: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .bk-exploded-product-center {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .bk-exploded-main-img {
        max-width: 220px !important;
        max-height: 250px !important;
    }

    .bk-exploded-callouts {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        pointer-events: auto !important;
    }

    .bk-exploded-card {
        position: static !important;
        width: 100% !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .bk-exploded-card-box {
        padding: 14px 16px !important;
        border-radius: 14px !important;
    }

    .bk-exploded-card-title {
        font-size: 14px !important;
    }

    .bk-exploded-card-desc {
        font-size: 12px !important;
    }

    /* Pinned Vertical Showcase Mobile Responsive */
    .bk-pinned-vertical-wrap {
        padding: 16px 8px !important;
        margin: 20px auto !important;
    }

    .bk-pinned-vertical-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .bk-pinned-sticky-col {
        position: relative !important;
        top: 0 !important;
        height: 260px !important;
        order: -1 !important;
        margin-bottom: 8px !important;
    }

    .bk-pinned-preview-box {
        border-radius: 20px !important;
    }

    .bk-pinned-preview-glow {
        width: 200px !important;
        height: 200px !important;
    }

    .bk-pinned-preview-slide {
        padding: 18px !important;
    }

    .bk-pinned-steps-col {
        gap: 16px !important;
        padding-bottom: 20px !important;
    }

    .bk-pinned-step-card {
        padding: 22px 18px !important;
        border-radius: 18px !important;
    }

    .bk-pinned-step-title {
        font-size: 17px !important;
    }

    .bk-pinned-step-desc {
        font-size: 13px !important;
        margin-bottom: 14px !important;
    }

    .bk-pinned-step-num {
        font-size: 15px !important;
        padding: 2px 10px !important;
    }

    /* Stacking Cards Mobile Responsive */
    .bk-stacking-cards-wrap {
        padding: 20px 8px !important;
    }

    .bk-stack-card {
        top: 75px !important;
        padding: 24px 18px !important;
        border-radius: 18px !important;
        min-height: auto !important;
    }

    .bk-stack-card-inner {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .bk-stack-card-title {
        font-size: 20px !important;
    }

    .bk-stack-card-desc {
        font-size: 13px !important;
    }

    .bk-stack-card-img {
        max-height: 200px !important;
    }

    /* Before / After Slider Mobile Responsive */
    .bk-before-after-container {
        border-radius: 16px !important;
        min-height: 240px !important;
    }

    .bk-ba-tag {
        top: 10px !important;
        padding: 4px 10px !important;
        font-size: 11px !important;
    }

    .bk-ba-button {
        width: 36px !important;
        height: 36px !important;
    }

    /* Peek Image Slider Mobile Responsive */
    .bk-peek-slider-wrap {
        padding: 16px 0 !important;
    }

    .bk-peek-slider-container {
        height: 380px !important;
    }

    .bk-peek-slide {
        margin: 0 !important;
        border-radius: 18px !important;
    }

    .bk-peek-content {
        padding: 22px 18px !important;
    }

    .bk-peek-title {
        font-size: 19px !important;
    }

    .bk-peek-desc {
        font-size: 12.5px !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
    }

    .bk-peek-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    .bk-peek-nav {
        width: 38px !important;
        height: 38px !important;
    }

    .bk-peek-prev {
        left: 10px !important;
    }

    .bk-peek-next {
        right: 10px !important;
    }
}