/* Testimonials Carousel Block */
.zolar-testi-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Room for box shadows */
}

.zolar-testi-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    cursor: grab;
}

.zolar-testi-track:active {
    cursor: grabbing;
}

.zolar-testi-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    user-select: none;
    transition: box-shadow 0.3s ease;
}

.zolar-testi-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.zolar-testi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.zolar-testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.zolar-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zolar-testi-icon svg {
    width: 50px;
    height: auto;
}

.zolar-testi-divider {
    border: none;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 20px 0;
    width: 100%;
}

/* Pagination */
.zolar-testi-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
}

.zolar-testi-dot {
    width: 12px;
    height: 12px;
    background-color: #161616;
    transform: rotate(45deg);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.zolar-testi-dot.active {
    background-color: #c9e265;
    transform: rotate(45deg) scale(1.3);
}

.zolar-testi-line {
    width: 30px;
    height: 2px;
    background-color: #c9e265;
}

.zolar-testi-arrow {
    background: transparent;
    border: none;
    color: #161616;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.zolar-testi-arrow:hover {
    color: #c9e265;
}

.zolar-testi-arrow:disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .zolar-testi-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .zolar-testi-card {
        flex: 0 0 100%;
    }
    .zolar-testi-track {
        gap: 20px;
    }
}
