.svw-section {
    width: 100%;
    margin: 24px 0;
    overflow: visible;
    --svw-desktop-slides: 5;
}

.svw-modals-root {
    position: static;
}

.svw-section-title {
    text-align: center;
    margin: 0 0 28px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    color: #2d7b73;
    letter-spacing: 0.5px;
}

.svw-showcase {
    position: relative;
    width: 100%;
    padding: 0 54px;
    box-sizing: border-box;
}

.svw-track-wrap {
    overflow: hidden;
    width: 100%;
}

.svw-track {
    display: flex;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.svw-slide {
    flex: 0 0 calc((100% / var(--svw-desktop-slides)) - 14.4px);
    box-sizing: border-box;
}

.svw-media-card {
    width: 100%;
}

.svw-video-holder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    cursor: pointer;
}

.svw-card-media {
    position: relative;
}

.svw-card-poster,
.svw-video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}

.svw-play-toggle {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    color: #4c4c4c;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.svw-play-icon {
    font-size: 26px;
    line-height: 1;
    margin-left: 4px;
}

.svw-card-bottom {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;
}

.svw-card-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.svw-product-chip {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.svw-product-chip img,
.svw-product-chip-fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.svw-product-chip-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    color: #111;
    font-weight: 700;
}

.svw-card-product-title {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.svw-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: rgba(34,34,34,0.85);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.svw-arrow span {
    font-size: 34px;
    line-height: 1;
}

.svw-arrow-prev {
    left: 0;
}

.svw-arrow-next {
    right: 0;
    background: rgba(220,220,220,0.95);
    color: #777;
}

.svw-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.svw-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #9f9f9f;
    cursor: pointer;
    transition: all 0.2s ease;
}

.svw-dot.is-active {
    width: 26px;
    background: #3b5bdb;
}

/* modal */
.svw-modal[hidden] {
    display: none !important;
}

body.svw-modal-open {
    overflow: hidden;
}

.svw-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.svw-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
}

.svw-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(460px, 94vw);
    max-width: 94vw;
    margin: 3vh auto;
}

.svw-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
}

.svw-modal-video-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.svw-modal-video {
    display: block;
    width: 100%;
    max-height: 94vh;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}

.svw-modal-product-panel {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

.svw-modal-product-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.svw-modal-product-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.svw-modal-product-meta {
    min-width: 0;
}

.svw-modal-product-title {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.svw-modal-product-title a {
    color: #111;
    text-decoration: none;
}

.svw-modal-product-price {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.svw-modal-product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.svw-btn {
    text-decoration: none;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border: 1px solid transparent;
    white-space: nowrap;
}

.svw-btn-light {
    background: #fff;
    color: #111;
    border-color: #ddd;
}

.svw-btn-dark {
    background: #111;
    color: #fff;
}

@media (max-width: 1399px) {
    .svw-section-title {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .svw-section-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .svw-showcase {
        padding: 0 42px;
    }

    .svw-section-title {
        font-size: 34px;
    }
}

/* MOBILE FIXES */
@media (max-width: 767px) {
    .svw-showcase {
        padding: 0 34px;
    }

    .svw-slide {
        flex: 0 0 100%;
    }

    .svw-arrow {
        width: 42px;
        height: 42px;
    }

    .svw-arrow span {
        font-size: 28px;
    }

    .svw-play-toggle {
        width: 64px;
        height: 64px;
    }

    .svw-play-icon {
        font-size: 24px;
    }

    .svw-card-product-title {
        max-width: 140px;
    }

    .svw-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .svw-modal-dialog {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .svw-modal-video-wrap {
        width: 100vw;
        height: 100dvh;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-top: env(safe-area-inset-top, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .svw-modal-video {
        width: 100%;
        height: 100%;
        max-height: 100dvh;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .svw-modal-close {
        top: max(12px, env(safe-area-inset-top));
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .svw-modal-product-panel {
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0));
        padding: 12px;
        border-radius: 14px;
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    .svw-modal-product-left {
        gap: 10px;
        align-items: center;
        min-width: 0;
    }

    .svw-modal-product-thumb {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .svw-modal-product-meta {
        min-width: 0;
        flex: 1;
    }

    .svw-modal-product-title {
        font-size: 14px;
        line-height: 1.2;
        margin: 0 0 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .svw-modal-product-price {
        font-size: 13px;
        line-height: 1.2;
    }

    .svw-modal-product-actions {
        flex-direction: column;
        gap: 8px;
        width: auto;
        flex-shrink: 0;
    }

    .svw-btn {
        min-width: 90px;
        padding: 10px 12px;
        font-size: 12px;
        flex: initial;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
    .svw-modal-product-panel {
        padding: 10px;
        gap: 8px;
    }

    .svw-modal-product-thumb {
        width: 42px;
        height: 42px;
    }

    .svw-modal-product-title {
        font-size: 13px;
    }

    .svw-modal-product-price {
        font-size: 12px;
    }

    .svw-btn {
        min-width: 78px;
        padding: 9px 10px;
        font-size: 11px;
    }
}