.k-slider {
    position: relative;
    height: 500px;
    padding-top: 50px;
    margin: auto;
    user-select: none;
    touch-action: pan-y;
}
@media (max-width: 768px) {
    .k-slider {
        height: 400px;
    }
}

.k-s-kapsayici {
    width: 3500px;
    height: 3500px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.k-yorum {
    width: 320px;
    height: 350px;
    box-sizing: border-box;
    position: absolute;
    top: calc(50% - 175px);
    left: calc(50% - 160px);
    transform-origin: 50% 50%;
    border-radius: 25px;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.k-yorum-bilgi {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f0f0f0;
    border-radius: 100px;
}

.k-yorum-bilgi .k-resmi {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    border: 2px solid #fff;
    transform-origin: center left;
    transform: scale(1.4);
    user-select: none;
    pointer-events: none;
}

.k-yorum-bilgi .k-adi {
    color: #000;
    font-size: 14px;
    padding: 5px 30px;
}

.k-yorum .y-puan {
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
}

.k-yorum .y-metin {
    padding: 20px 10px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    color: #333;
    flex-grow: 1;
    max-height: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-s-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100px;
    height: 15px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
}

.k-s-nav span {
    display: block;
    height: 100%;
    width: 0%; 
    background: var(--mavi);
    border-radius: 999px;
    transition: width 0.3s ease-out;
    position: absolute;
    left: 0;
    top: 0;
}

body.dragging {
    cursor: grabbing;
}