/* Stile Recensioni - Esatto da Matrimonio.com */
.scrollSnap {
    position: relative;
    width: 100%;
}

.scrollSnap__container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
}

.scrollSnap__item {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.scrollSnap__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.scrollSnap__arrow:hover {
    background: #fdf2f8;
}

.scrollSnap__arrow--prev {
    left: -24px;
}

.scrollSnap__arrow--next {
    right: -24px;
}

.scrollSnap__arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.scrollSnap__arrow svg {
    width: 20px;
    height: 20px;
    fill: #ec4899;
}

.storefrontReviewsTile {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-width: 340px;
    max-width: 380px;
    transition: box-shadow 0.3s;
}

.storefrontReviewsTile:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.storefrontReviewsTileHeader {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.storefrontReviewsTileHeader__avatar {
    width: 56px;
    height: 56px;
    margin-right: 12px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.storefrontReviewsTileHeader__info {
    flex: 1;
}

.storefrontReviewsTileHeader__info > span {
    color: #666;
    font-size: 0.875rem;
}

.storefrontReviewsTileRating {
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating__picture {
    position: relative;
    width: 100px;
    height: 16px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
}

.rating__progress {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s;
}

.rating__count {
    font-weight: 600;
    color: #222;
}

.storefrontReviewsTileContent__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
}

.storefrontReviewsTileContent__description {
    color: #555;
    line-height: 1.6;
    font-size: 0.938rem;
}

.storefrontReviewsTilePhotos {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.storefrontReviewsTilePhotos {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.storefrontReviewsTilePhotos img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

/* Nasconde scrollbar */
.scrollSnap__container::-webkit-scrollbar {
    display: none;
}

.scrollSnap__container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

