
/* استایل پاپ‌آپ و مدل ویدیویی */
.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.single-testimonial {
    background: #f9f9f9;
    border-radius: 16.756px;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.testimonial-thumb {
    width: 100%;
    height: 100%;
}
.testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    pointer-events: none;
}
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.video-popup-content {
    position: relative;
    background: #000;
    width: 800px;
    height: 500px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
#popup-video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

/* استایل نمایش ساده */
.testimonial-simple-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.single-simple-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 225px;
    height: 200px;
    padding: 9.616px;
    gap: 9.616px;
    border-radius: 9.353px 21.824px 21.824px 9.353px;
    border: 0.39px solid #CACACA;
    background: #FFF;
    flex-shrink: 0;
    overflow: hidden;
}
.simple-thumb {
    width: 35.38px;
    height: 35.38px;
}
.simple-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7.936px;
}
.simple-content {
    text-align: center;
    font-size: 12px;
    overflow: hidden;
}
.testimonial-author {
    margin-top: auto;
    align-self: flex-start;
    font-weight: bold;
    font-size: 13px;
}

/* ریسپانسیو */
@media (max-width: 850px) {
    .video-popup-content {
        width: 90%;
        height: auto;
    }
    #popup-video {
        height: auto;
    }
}
@media (max-width: 768px) {
    .single-testimonial,
    .single-simple-testimonial {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .single-simple-testimonial.threerow {
    width: 48%;
}
}
