.btn-view-more {
    position: absolute;
    bottom: -1px;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100px;
    left: 0;
    right: 0;
    background-image: linear-gradient(0deg, #ffffff -40px, #ffffff, transparent);
}
/* SINGLE PRODUCT */
.videos .item,
.videos .video-item {
    cursor: pointer;
}

.videos .item .video-thumb,
.videos .video-item .video-thumb {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.videos .item .video-thumb img,
.videos .video-item .video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-btn {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #ff0000;
    width: 100%;
    height: 100%;
    opacity: .6;
    transition: opacity .5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.videos .item:hover .video-btn,
.videos .item:focus-visible .video-btn,
.videos .video-item:hover .video-btn,
.videos .video-item:focus-visible .video-btn {
    opacity: .9;
}

.video-btn svg,
.video-btn i {
    display: block;
    width: clamp(42px, 16%, 74px);
    height: auto;
    margin: 0;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .38));
}

.video-btn i {
    width: auto;
    font-size: 1.8rem;
    line-height: 1;
}

.videos .item .video-title,
.videos .video-item .video-title {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    width: 100%;
    height: auto;
    padding: 2.5rem .75rem .7rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .78));
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    pointer-events: none;
}

.casara-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.casara-video-modal.is-open {
    display: flex;
}

.casara-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 10, 8, .82);
}

.casara-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    color: #fff;
}

.casara-video-modal.is-short .casara-video-modal__dialog {
    width: min(420px, 100%);
}

.casara-video-modal__close {
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.casara-video-modal__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
}

.casara-video-modal.is-short .casara-video-modal__frame {
    aspect-ratio: 9 / 16;
    max-height: calc(100vh - 110px);
}

.casara-video-modal__frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.casara-video-modal__title {
    margin-top: 12px;
    color: #fff;
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

body.casara-video-modal-open {
    overflow: hidden;
}

@media (max-width: 576px) {
    .casara-video-modal {
        padding: 16px;
    }

    .casara-video-modal__close {
        right: 0;
        top: -46px;
    }
}
