.reviews-gallery-section {
    margin-bottom: clamp(40px, 4vw, 48px);
}

.reviews-gallery-section .owl-carousel .owl-stage-outer {
    overflow: visible !important;
}

.reviews-gallery-section .owl-item {
    width: clamp(111px, 12vw, 127px) !important;
    height: clamp(111px, 12vw, 127px) !important;
}

.reviews-gallery-item {
    position: relative;
    width: 100%;
    max-width: clamp(111px, 12vw, 127px);
    height: clamp(111px, 12vw, 127px);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviews-gallery-item a,
.reviews-gallery-item .reviews-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.reviews-gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.reviews-gallery-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.reviews-gallery-item:hover .reviews-gallery-video-overlay {
    opacity: 0.9;
}

.reviews-gallery-more {
    background: url('../img/bg.webp') no-repeat center/cover;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(111px, 12vw, 127px);
    border-radius: 15px;
}

.reviews-gallery-more-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: none !important;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.reviews-gallery-more-text {
    font-weight: 800;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff !important;
}

.reviews-gallery-loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.reviews-gallery-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(58, 133, 255, 0.2);
    border-top-color: #3A85FF;
    border-radius: 50%;
    animation: reviews-gallery-spin 0.8s linear infinite;
    z-index: 100;
}

@keyframes reviews-gallery-spin {
    to {
        transform: rotate(360deg);
    }
}