.bt-slider {
    overflow: hidden;
}

.bt-slider-view {
    display: flex;
    align-items: center;
}

.bt-track-wrap {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.bt-track {
    display: flex;
    transition: transform 0.5s ease;
}

.bt-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
}

.bt-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bt-feedback {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.bt-name {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.bt-stars {
    display: flex;
    gap: 3px;
}

.bt-star {
    color: #f5b342;
    font-size: 18px;
    line-height: 1;
}

.bt-arrow-prev,
.bt-arrow-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0;
    flex-shrink: 0;
}

.bt-arrow-prev {
    margin-right: -20px;
}

.bt-arrow-next {
    margin-left: -20px;
}

.bt-arrow-prev .dashicons,
.bt-arrow-next .dashicons {
    width: auto;
    height: auto;
    font-size: 20px;
}

.bt-arrow-prev:hover,
.bt-arrow-next:hover {
    background: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
}

.bt-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.bt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.bt-dot.active {
    background: var(--brand-color);
}
