.dearshop-reviews-wrapper {
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.dearshop-reviews-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
}

.dearshop-reviews-nav {
    display: flex;
    gap: 1rem;
}

.dearshop-reviews-nav-btn {
    background: #ffffff;
    border: 1px solid #eae5de;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dearshop-reviews-nav-btn:hover {
    background: #fdfcfb;
    color: #b08d4a;
}

.dearshop-reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.dearshop-reviews-slider::-webkit-scrollbar {
    display: none;
}

.dearshop-review-card {
    min-width: 320px;
    flex: 0 0 320px;
    scroll-snap-align: start;
    border: 1px solid #eae5de;
    padding: 2rem;
    position: relative;
    background: #ffffff;
}

.dearshop-review-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: rgba(197, 160, 89, 0.2);
    line-height: 1;
}

.dearshop-review-stars {
    color: #c5a059;
    margin-bottom: 1rem;
}

.dearshop-review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666666;
    font-family: 'Lato', sans-serif;
}

.dearshop-reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dearshop-review-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eae5de;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e3328;
    font-weight: bold;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.dearshop-reviewer-name {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #3e3328;
}

.dearshop-reviewer-role {
    font-size: 0.8rem;
    color: #666666;
}

/* Responsive */
@media (max-width: 768px) {
    .dearshop-reviews-slider {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dearshop-reviews-slider {
        gap: 1rem;
    }
    .dearshop-review-card {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 1.5rem;
    }
}
