.store-reviews-slider-section {
    padding: 60px 0;
    overflow: hidden;
}

.store-reviews-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.store-reviews-slider-head h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.store-reviews-rating {
    font-size: 22px;
    color: #ffb400;
    font-weight: 700;
    white-space: nowrap;
}

.store-reviews-rating span {
    color: #222;
}

.store-reviews-slider-wrap {
    position: relative;
}

.store-reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.store-review-card {
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    min-height: 260px;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 24px;
    flex-shrink: 0;
    transition: 0.3s ease;
    scroll-snap-align: start;
}

.store-review-card:hover {
    transform: translateY(-4px);
}

.store-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.store-review-author strong {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.store-review-author span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 3px;
}

.store-review-stars {
    color: #ffb400;
    margin: 16px 0 14px;
    font-size: 18px;
    letter-spacing: 2px;
}

.store-review-card p {
    margin: 0;
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

.store-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: 0.3s ease;
}

.store-reviews-arrow i {
    font-size: 16px;
    line-height: 1;
}

.store-reviews-arrow:hover {
    background: #333;
}

.store-reviews-prev {
    left: -21px;
}

.store-reviews-next {
    right: -21px;
}

.store-reviews-track {
    scroll-snap-type: x mandatory;
}

.store-review-card {
    scroll-snap-align: start;
}

@media (max-width: 991px) {
    .store-review-card {
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .store-reviews-prev {
        left: 8px;
    }

    .store-reviews-next {
        right: 8px;
    }
}

@media (max-width: 576px) {
    .store-reviews-slider-section {
        padding: 40px 0;
    }

    .store-reviews-slider-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .store-reviews-slider-head h2 {
        font-size: 24px;
    }

    .store-reviews-rating {
        font-size: 18px;
    }

    .store-review-card {
        min-width: 100%;
        max-width: 100%;
        min-height: 300px;
    }

    .store-review-card p {
        font-size: 14px;
    }

    .store-reviews-prev {
        left: 10px;
    }

    .store-reviews-next {
        right: 10px;
    }
}