.customer-reviews {
    padding: 80px 0;
    background: #fff8f0;
    text-align: center;
}
.reviews-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}
.review-card {
    min-width: 300px;
    margin: 0 10px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.review-card.active {
    transform: scale(1);
}
.stars {
    color: #f9b700;
    font-size: 18px;
}
.stars span {
    opacity: 0.4;
}
.stars span.filled {
    opacity: 1;
}
.review-buttons button {
    margin: 20px 10px;
    padding: 10px 15px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.review-buttons button:hover {
    background: #e65a00;
}
.add-review {
    margin-top: 40px;
 display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.add-review input, .add-review textarea {
    width: 400px;
    padding: 10px;
    margin: 10px 0;
}
.add-review button {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.review-side{
    width: 450px;
    height: 300px;
    text-align: center;
    padding: 20px;
    margin-left: 30px;
    border: 4px solid #ff6600;
    box-shadow: 6px 3px 6px 3px #ff6600;
    border-radius: 15px;
}
.review-side h3{
    font-size:20px;
    color: #ff6600;
}
.newsletter-hero {
    position: relative;
    height: 450px;
    width: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 60px;
    border: none;
    border-radius: 10px;
}

/* Chef video */
.chef-video {
    position: absolute;
    left: -40%;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.video-overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(
        to right,
        rgba(255, 102, 0, 0.35),  /* left – video visible */
        rgba(255, 102, 0, 0.6),
        rgba(255, 102, 0, 0.85)   /* right – CTA very clear */
    );
 z-index: 2;
}

/* Newsletter box */
.newsletter-box {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    max-width: 360px;
    border-radius: 12px;
}
.newsletter-form input{
    width:300px !important ;
}
input, textarea{
    border: 2px solid rgba(255,102,0,0.4);
    box-shadow: 2px 2px 2px 2px   rgba(255, 102, 0, 0.85);
    border-radius: 6px;
    outline: none;
     background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size:15px;
    font-weight: 600;
}
 input::placeholder , textarea::placeholder {
    color: #ff6600;
}


 input:focus, textarea:focus {
    border-color: #ff6600;
    outline: none;
}
.form-message {
    margin-top: 10px;
    font-size: 14px;
}

.form-message.success {
    color: #0a8;
}

.form-message.error {
    color: #c00;
}
