.ts-wrapper-c67bcb74 {
    --ts-spv: 3;
    --ts-gap: 20px;
    width: 100%;
    position: relative;
    font-family: inherit;
}

.ts-track-container {
    width: 100%;
    overflow: hidden;
}

.ts-track {
    display: flex;
    gap: var(--ts-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 20px;
}
.ts-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.ts-card {
    flex: 0 0 calc((100% - (var(--ts-gap) * (var(--ts-spv) - 1))) / var(--ts-spv));
    scroll-snap-align: start;
    background-color: #1a1a1a;
    border-top: 3px solid #ff2478;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
    box-sizing: border-box;
}

.ts-quotes {
    margin-bottom: 20px;
    opacity: 0.3;
}
.ts-quotes svg {
    /* Color now controlled via Elementor settings */
}

.ts-stars {
    margin-bottom: 20px;
}
.ts-stars svg {
    height: 16px;
    width: auto;
    /* Color now controlled via Elementor settings */
}

.ts-content {
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.ts-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.ts-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ts-meta {
    display: flex;
    flex-direction: column;
}

.ts-name {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.ts-business {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Navigation */
.ts-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.ts-nav-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}
.ts-nav-btn:hover {
    background: rgba(255,255,255,0.1);
}

.ts-progress {
    flex-grow: 1;
    max-width: 300px;
    margin: 0 20px;
}

.ts-progress-bar {
    height: 2px;
    background: rgba(255,255,255,0.1);
    width: 100%;
    position: relative;
}

.ts-progress-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /* Background color now controlled via Elementor */
    width: 0%;
    transition: width 0.3s ease;
}

.ts-pagination {
    color: #888;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}
.ts-pagination .ts-current {
    color: #fff;
}