/**
 * Nupsu Feedback Frontend Styles
 */

/* Variables */
:root {
    --nupsu-feedback-navy: #232156;
    --nupsu-feedback-star-yellow: #FDCC01;
    --nupsu-feedback-cream-bg: #FEF5E6;
    --nupsu-feedback-brown-text: #8B6E55;
}

/* Section */
.nupsu-feedback-section {
    padding: 0;
}

.nupsu-feedback-section .section-container {
    position: relative;
}

/* Swiper overrides */
.nupsu-feedback-swiper {
    padding: 20px 0 40px;
    overflow: hidden;
}

.nupsu-feedback-swiper .swiper-wrapper {
    padding: 10px 0;
}

.nupsu-feedback-swiper .swiper-slide {
    height: auto;
}

/* Card */
.nupsu-feedback-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    height: 100%;
    font-family: 'Comic Neue', sans-serif;
}

.nupsu-feedback-card-inner {
    border: 1px solid #5b5b5b;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Stars */
.nupsu-feedback-stars {
    font-size: 24px;
    color: var(--nupsu-feedback-star-yellow);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Text */
.nupsu-feedback-text {
    color: #5b5b5b;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Author */
.nupsu-feedback-author {
    color: #5b5b5b;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation arrows - hidden */
.nupsu-feedback-section .swiper-button-prev,
.nupsu-feedback-section .swiper-button-next {
    display: none;
}

/* Pagination */
.nupsu-feedback-swiper .swiper-pagination {
    bottom: 0 !important;
    position: relative;
    margin-top: 20px;
}

.nupsu-feedback-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #a2d4df;
    opacity: 1;
}

.nupsu-feedback-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0c4a6e;
}

/* Responsive */
@media (max-width: 1023px) {
    .nupsu-feedback-card {
        padding: 25px;
    }
}

@media (max-width: 639px) {
    .nupsu-feedback-card {
        padding: 20px;
    }

    .nupsu-feedback-stars {
        font-size: 20px;
    }

    .nupsu-feedback-text {
        font-size: 15px;
    }
}
