.iy-reviews-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.iy-reviews-carousel {
    overflow: hidden;
}

.iy-reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    padding: 10px 5px 30px;
}

.iy-reviews-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.iy-review-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.iy-review-image-wrapper {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.iy-review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iy-review-content {
    padding: 35px 20px 20px;
    text-align: center;
    position: relative;
    flex-grow: 1;
    background: #fff;
    z-index: 1;
}

.iy-review-stars {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2px;
    z-index: 2;
}

.iy-review-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.iy-review-verified {
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: #111;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.iy-review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.iy-reviews-arrow {
    position: absolute;
    top: 200px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #333;
    transition: all 0.3s ease;
}

.iy-reviews-arrow i,
.iy-reviews-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
}

.iy-reviews-arrow:hover {
    background: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.iy-reviews-prev {
    left: -22px;
}

.iy-reviews-next {
    right: -22px;
}

@media (max-width: 768px) {
    .iy-reviews-prev { left: 0; }
    .iy-reviews-next { right: 0; }
}
