/* Customer Feedback Slider - 80921c52 — Exclusive Poster Style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

.cfs-80921c52-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    font-family: 'Inter', sans-serif;
}

/* ===== RADIAL GLOW BACKGROUND ===== */
.cfs-80921c52-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===== DECORATIVE CORNER ORNAMENTS ===== */
.cfs-80921c52-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}

.cfs-80921c52-corner::before,
.cfs-80921c52-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #d4af37, #f0d060);
}

.cfs-80921c52-corner-tl { top: 12px; left: 12px; }
.cfs-80921c52-corner-tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.cfs-80921c52-corner-tl::after { top: 0; left: 0; width: 2px; height: 20px; }

.cfs-80921c52-corner-tr { top: 12px; right: 12px; }
.cfs-80921c52-corner-tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.cfs-80921c52-corner-tr::after { top: 0; right: 0; width: 2px; height: 20px; }

.cfs-80921c52-corner-bl { bottom: 12px; left: 12px; }
.cfs-80921c52-corner-bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.cfs-80921c52-corner-bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }

.cfs-80921c52-corner-br { bottom: 12px; right: 12px; }
.cfs-80921c52-corner-br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.cfs-80921c52-corner-br::after { bottom: 0; right: 0; width: 2px; height: 20px; }

/* ===== HEADER ===== */
.cfs-80921c52-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cfs-80921c52-header-icon {
    font-size: 36px;
    margin-bottom: 10px;
    animation: cfs80921c52Pulse 1.5s ease-in-out infinite;
}

.cfs-80921c52-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #d4af37;
    margin: 0 0 8px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cfs-80921c52-header-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.cfs-80921c52-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== SWIPER ===== */
.cfs-80921c52-swiper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

/* ===== SLIDES ===== */
.cfs-80921c52-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    opacity: 0.35;
    transform: scale(0.8);
}

.cfs-80921c52-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.cfs-80921c52-slide.swiper-slide-prev,
.cfs-80921c52-slide.swiper-slide-next {
    opacity: 0.55;
    transform: scale(0.88);
}

/* ===== FRAME ===== */
.cfs-80921c52-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #0f0f1a 0%, #141428 100%);
    flex-shrink: 0;
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Gold glow behind active frame */
.cfs-80921c52-frame-glow {
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(45deg, #d4af37, #f0d060, #d4af37, #b8962e);
    background-size: 300% 300%;
    animation: cfs80921c52GlowShift 3s ease infinite;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.5s ease;
}

.cfs-80921c52-slide.swiper-slide-active .cfs-80921c52-frame-glow {
    opacity: 0.35;
}

.cfs-80921c52-slide.swiper-slide-active .cfs-80921c52-frame {
    border-color: #d4af37;
    box-shadow:
        0 0 25px rgba(212, 175, 55, 0.2),
        0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Shimmer sweep on frame */
.cfs-80921c52-frame-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.cfs-80921c52-slide.swiper-slide-active .cfs-80921c52-frame-shimmer {
    animation: cfs80921c52Shimmer 2s ease 0.3s 1 forwards;
}

/* ===== IMAGE ===== */
.cfs-80921c52-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cfs-80921c52-slide.swiper-slide-active .cfs-80921c52-slide-img {
    transform: scale(1.03);
}

/* ===== ARROWS ===== */
.cfs-80921c52-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.cfs-80921c52-arrow:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.cfs-80921c52-arrow:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.cfs-80921c52-arrow-prev {
    left: 16px;
}

.cfs-80921c52-arrow-next {
    right: 16px;
}

/* ===== PAGINATION DOTS ===== */
.cfs-80921c52-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.cfs-80921c52-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.cfs-80921c52-pagination .swiper-pagination-bullet:hover {
    background: rgba(212, 175, 55, 0.5);
}

.cfs-80921c52-pagination .swiper-pagination-bullet-active {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.5);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes cfs80921c52Pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes cfs80921c52GlowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes cfs80921c52Shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cfs-80921c52-wrapper {
        padding: 40px 20px;
    }
    .cfs-80921c52-header-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

@media (max-width: 767px) {
    .cfs-80921c52-frame {
        width: 260px;
        height: 260px;
    }

    .cfs-80921c52-arrow {
        width: 40px;
        height: 40px;
    }

    .cfs-80921c52-arrow svg {
        width: 16px;
        height: 16px;
    }

    .cfs-80921c52-header-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .cfs-80921c52-wrapper {
        padding: 35px 16px;
        border-radius: 16px;
    }

    .cfs-80921c52-corner {
        width: 28px;
        height: 28px;
    }

    .cfs-80921c52-corner::before { width: 14px !important; }
    .cfs-80921c52-corner::after { height: 14px !important; }
}

@media (max-width: 480px) {
    .cfs-80921c52-frame {
        width: 220px;
        height: 220px;
    }

    .cfs-80921c52-header-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .cfs-80921c52-header-subtitle {
        font-size: 12px;
    }
}
