/* ============================================
   CUSTOMER SHOWCASE SECTION - YOU × LGP
   Auto-scrolling Carousel with Drag
   ============================================ */

.customer-showcase-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFFFFF 50%, #FFF8DC 100%);
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

/* Section Header */
.customer-showcase-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.customer-showcase-title {
    font-family: var(--font-english-display);
    font-size: 2.8rem;
    color: #8B0000;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.customer-showcase-title .highlight {
    color: #D4AF37;
    font-weight: 700;
    font-size: 3rem;
}

.customer-showcase-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, #FFD700, #D4AF37, transparent);
}

.customer-showcase-subtitle {
    font-family: var(--font-bengali-body);
    font-size: 1.4rem;
    color: #8B0000;
    margin-top: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #8B0000, #A52A2A, #8B0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel Wrapper */
.customer-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

/* Customer Grid - Auto-scrolling */
.customer-grid {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 40s linear infinite;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Customer Card - Image Focused Design */
.customer-card {
    flex: 0 0 300px;
    height: 400px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    pointer-events: none;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 60%,
            rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

/* Customer Image - Full Card */
.customer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay - Minimal Bottom Text */
.customer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    z-index: 2;
    background: transparent;
}

/* Customer Info - Minimal */
.customer-name {
    font-family: var(--font-english-display);
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 0.35rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.customer-product {
    font-size: 0.9rem;
    color: #F5DEB3;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.customer-testimonial {
    display: none;
}

/* Rating Stars - Hidden */
.customer-rating {
    display: none;
}

/* CTA Section */
.customer-showcase-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.customer-showcase-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid #D4AF37;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.customer-showcase-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-showcase-section {
        padding: 2rem 0;
    }

    .customer-showcase-header {
        margin-bottom: 1.25rem;
    }

    .customer-showcase-title {
        font-size: 2.2rem;
    }

    .customer-showcase-subtitle {
        font-size: 1.2rem;
    }

    .customer-card {
        flex: 0 0 260px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .customer-showcase-title {
        font-size: 1.9rem;
    }

    .customer-showcase-subtitle {
        font-size: 1.1rem;
    }

    .customer-card {
        flex: 0 0 240px;
        height: 320px;
    }

    .customer-overlay {
        padding: 1rem 1.25rem;
    }

    .customer-name {
        font-size: 1.1rem;
    }
}