.review__videos--section {
    background: var(--bg-light-color, #f8f9fa);
}

.review__videos--slider {
    position: relative;
    padding: 0 50px;
}

.review__videos--slider .swiper-slide {
    height: auto;
}

.review__video--card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.review__video--card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review__video--thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #1a1a1a;
}

.review__video--thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review__video--card:hover .review__video--thumbnail img {
    transform: scale(1.05);
}

.review__video--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #555;
}

.review__video--play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color, #c2a36e);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 4px 15px rgba(194, 163, 110, 0.4);
}

.review__video--play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color, #b8956a);
}

.review__video--play-btn svg {
    margin-left: 3px;
}

.review__video--content {
    padding: 18px 20px;
}

.review__video--title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color, #333);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.review__video--customer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 14px;
    margin: 0;
}

.review__video--customer svg {
    color: var(--primary-color, #c2a36e);
}

.review__videos--slider .swiper__nav--btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review__videos--slider .swiper__nav--btn::after {
    font-size: 16px;
    color: var(--primary-color, #c2a36e);
    font-weight: bold;
}

.review__videos--slider .swiper-button-prev {
    left: 0;
}

.review__videos--slider .swiper-button-next {
    right: 0;
}

.review__videos--pagination {
    position: relative;
    margin-top: 25px;
}

.review__videos--pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.review__videos--pagination .swiper-pagination-bullet-active {
    background: var(--primary-color, #c2a36e);
}

/* Modal Styles */
.review__video--modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.review__video--modal.active {
    display: flex;
}

.review__video--modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.review__video--modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
}

.review__video--modal-content video {
    width: 100%;
    max-height: 80vh;
    background: #000;
    border-radius: 8px;
}

.review__video--modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.review__video--modal-close:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .review__videos--slider {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .review__videos--slider {
        padding: 0;
    }

    .review__videos--slider .swiper__nav--btn {
        display: none;
    }

    .review__video--thumbnail {
        height: 200px;
    }

    .review__video--play-btn {
        width: 50px;
        height: 50px;
    }

    .review__video--play-btn svg {
        width: 20px;
        height: 20px;
    }
}