/* ── Reviews Section ──────────────────────────────────────────── */

.oc-reviews {
    background: #fff;
    padding: 80px 0 60px;
    position: relative;
}

.oc-reviews__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.oc-reviews__header {
    margin-bottom: 40px;
}

.oc-reviews__eyebrow {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #FF6A00;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.oc-reviews__title {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 54px;
    font-weight: 900;
    color: #111214;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.oc-reviews__rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oc-reviews__stars {
    color: #FF6A00;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 2px;
}

.oc-reviews__rating-text {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111214;
    opacity: 0.45;
}

/* ── Slider Wrapper ───────────────────────────────────────────── */

.oc-reviews__slider-wrap {
    position: relative;
}

.oc-reviews__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.oc-reviews__track::-webkit-scrollbar {
    display: none;
}

/* ── Nav Buttons ──────────────────────────────────────────────── */

.oc-reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(17, 18, 20, 0.18);
    background: #fff;
    color: #111214;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.oc-reviews__nav:hover {
    border-color: #FF6A00;
    background: #FF6A00;
    color: #fff;
}

.oc-reviews__nav--prev { left: -22px; }
.oc-reviews__nav--next { right: -22px; }

/* ── Card ─────────────────────────────────────────────────────── */

.oc-reviews__card {
    flex: 0 0 360px;
    max-width: 360px;
    background: #fff;
    border: 1px solid rgba(17, 18, 20, 0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.oc-reviews__card:hover {
    border-color: rgba(255, 106, 0, 0.4);
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.08);
}

.oc-reviews__card-img-link {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}

.oc-reviews__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #EDE3D5;
    transition: transform 0.3s ease;
}

.oc-reviews__card-img-link:hover .oc-reviews__card-image {
    transform: scale(1.04);
}

.oc-reviews__card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oc-reviews__card-stars {
    color: #FF6A00;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.oc-reviews__card-author {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #111214;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.oc-reviews__card-tour {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #FF6A00;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: opacity 0.2s;
}

.oc-reviews__card-tour:hover {
    opacity: 0.75;
    color: #FF6A00;
}

.oc-reviews__card-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(17, 18, 20, 0.6);
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.oc-reviews__card-text a {
    color: inherit;
    text-decoration: none;
}

/* ── Footer ───────────────────────────────────────────────────── */

.oc-reviews__footer {
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.oc-reviews__cta {
    display: inline-block;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #FF6A00;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    transition: background 0.2s;
}

.oc-reviews__cta:hover {
    background: #e05d00;
    color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1400px) {
    .oc-reviews__nav { display: none !important; }
}

@media (max-width: 900px) {
    .oc-reviews {
        padding: 56px 0 44px;
    }

    .oc-reviews__title {
        font-size: 36px;
    }

    .oc-reviews__card {
        flex: 0 0 88vw;
        max-width: 88vw;
    }

    .oc-reviews__track {
        gap: 16px;
    }

    .oc-reviews__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
