/* Основной контейнер */
.nk-otzyvy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.nk-otzyvy-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

/* Обертка слайдера */
.nk-otzyvy-slider-wrapper {
    position: relative;
    padding: 20px 0;
}

/* Слайдер */
.nk-otzyvy-slider {
    display: flex;
    margin: 0 -15px;
}

/* Карточка отзыва */
.nk-otzyv-item {
    padding: 0 15px;
    width: 50%;
    box-sizing: border-box;
}

.nk-otzyv-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

/* Шапка отзыва */
.nk-otzyv-header {
    display: flex;
    margin-bottom: 20px;
}

.nk-otzyv-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    border: 2px solid #266bdb;
}

.nk-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-otzyv-meta {
    flex-grow: 1;
}

.nk-otzyv-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #222;
    font-weight: 600;
}

.nk-otzyv-location,
.nk-otzyv-date {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.nk-otzyv-rating {
    margin-top: 10px;
}

.nk-star {
    color: #ddd;
    font-size: 18px;
    margin-right: 3px;
}

.nk-star.filled {
    color: #266bdb;
}

/* Контент отзыва */
.nk-otzyv-content {
    position: relative;
    padding-left: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nk-otzyv-quote {
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 70px;
    line-height: 1;
    color: #266bdb;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.nk-otzyv-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-top: 10px;
    flex-grow: 1;
}

/* Навигация */
.nk-otzyvy-nav {
    position: absolute;
    right: 0;
    top: -60px;
    display: flex;
    gap: 10px;
}

.nk-otzyvy-prev,
.nk-otzyvy-next {
    background: #266bdb;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.nk-otzyvy-prev:hover,
.nk-otzyvy-next:hover {
    background: #1a56b0;
    transform: translateY(-2px);
}

/* Стрелки */
.nk-arrow-left,
.nk-arrow-right {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 3px;
}

.nk-arrow-left {
    transform: rotate(135deg);
    margin-left: 5px;
}

.nk-arrow-right {
    transform: rotate(-45deg);
    margin-right: 5px;
}

/* Адаптив */
@media (max-width: 768px) {
    .nk-otzyv-item {
        width: 100%;
    }
    
    .nk-otzyvy-nav {
        top: auto;
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .nk-otzyv-card {
        padding: 20px;
    }
    
    .nk-otzyv-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nk-otzyv-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}