/* Reset & Styling Rules */
.review-slider-section {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     background-color: #0b0f0c; Rich dark ambient background */
    background-image: url('your-chocolate-background.jpg'); /* Replace with your background asset path */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Dark atmospheric vignette overlay matching image backdrop */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*     background: radial-gradient(circle, rgba(16,20,17,0.8) 0%, rgba(5,7,5,0.95) 100%); */
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.reviews-wrapper {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Slides Setup for Fade Animation */
.review-slide {
    position: absolute;
    width: 100%;
    max-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    text-align: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.review-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Gold stars matching requested hex code #CFB473 */
.stars {
    color: #CFB473;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

/* Clean, modern typography layout */
.review-text {
    color: #e5e5e5;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
}

.review-author {
    color: #CFB473;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Navigation Arrow Controls */
.slider-arrow {
    background: none;
    border: none;
    color: rgba(207, 180, 115, 0.5); /* Semi-transparent #CFB473 gold */
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    transition: color 0.3s ease;
    user-select: none;
}

.slider-arrow:hover {
    color: #CFB473; /* Crisp gold hover accent */
}

/* Responsive adjustment rules */
@media (max-width: 600px) {
    .review-text {
        font-size: 16px;
    }
    .slider-arrow {
        font-size: 20px;
        padding: 5px;
    }
    .review-slide {
        padding: 0 15px;
    }
}