.customer-feedback-container {
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.customer-feedback-container h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
}

#customer-feedback-section .feedback-slide {
    background-color: var(--light-gray) !important;
    border-radius: 4px !important;
    padding: 24px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#customer-feedback-section .feedback-slide p {
    font-size: 17px;
    color: #333;
    line-height: 24px;
    margin: 0;
}

#customer-feedback-section .slick-prev-custom,
#customer-feedback-section .slick-next-custom {
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px !important;
    border: 1px solid var(--outlines-gray) !important;
    position: relative;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#customer-feedback-section .slick-prev-custom img,
#customer-feedback-section .slick-next-custom img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Hover state for navigation buttons */
#customer-feedback-section .slick-prev-custom:hover,
#customer-feedback-section .slick-next-custom:hover {
    background-color: var(--gray) !important;
    border: 1px solid var(--outlines-gray) !important;
}

/* Centered dots with equal spacing */
#customer-feedback-section .slick-dots {
    bottom: -68px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
}

@media (max-width: 576px) {
    #customer-feedback-section .slick-dots {
        bottom: -24px !important;
    }
}

/* Each dot slot is only the dot size, not pill size */
#customer-feedback-section .slick-dots li {
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

/* Remove default slick button padding */
#customer-feedback-section .slick-dots li button {
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Base dot style */
#customer-feedback-section .slick-dots li button:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #767676;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Active pill style centered between two dots */
#customer-feedback-section .slick-dots li.slick-active button:before {
    width: 24px;
    height: 8px;
    border-radius: 10px;
    background-color: var(--dark-gray);
    transform: translateX(-8px); /* shift so pill is centered between neighbors */
}


#customer-feedback-section .slick-slide {
    padding: 0 12px;
    box-sizing: border-box;
}

#customer-feedback-section .slick-list {
    margin: 0 -12px;
}

/* Extra large (≥1200px) */
@media (min-width: 1200px) {
    #customer-feedback-section .slick-slide {
        padding: 0 12px;
    }
    #customer-feedback-section .slick-list {
        margin: 0 -12px;
    }
}

/* Large (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #customer-feedback-section .slick-slide {
        padding: 0 10px;
    }
    #customer-feedback-section .slick-list {
        margin: 0 -10px;
    }
}

/* Medium (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #customer-feedback-section .slick-slide {
        padding: 0 8px;
    }
    #customer-feedback-section .slick-list {
        margin: 0 -8px;
    }
}

/* Small (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #customer-feedback-section .slick-slide {
        padding: 0 6px;
    }
    #customer-feedback-section .slick-list {
        margin: 0 -6px;
    }
}

/* Extra small (<576px) */
@media (max-width: 575.98px) {
    #customer-feedback-section .slick-slide {
        padding: 0 4px;
    }
    #customer-feedback-section .slick-list {
        margin: 0 -4px;
    }
}
