
.ai-customer-showcase-wrapper { 
    margin: 40px 0; 
    position: relative; 
    width: 100%; 
}
.ai-customer-showcase-title { 
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-family: var(--ai-theme-font-2);
    margin-bottom: 46px;
}
.ai-customer-showcase-title:before {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 20px;
    display: block;
    content: " ";
    width: 37px;
    height: 1px;
    background: rgb(0 0 0 / .2);
}
.ai-customer-showcase-swiper {
    position: relative;
    padding: 0 5px;
    overflow: hidden;
}
.ai-cs-image-aspect-cover {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f0f0f0;
    position: relative;
}
.ai-cs-image-aspect-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.ai-customer-showcase-swiper .swiper-button-next,
.ai-customer-showcase-swiper .swiper-button-prev {
    color: #000 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: 50% !important;
    transform: translateY(-50%);
    margin-top: 0 !important; 
    z-index: 10;
}
.ai-customer-showcase-swiper .swiper-button-next:after,
.ai-customer-showcase-swiper .swiper-button-prev:after {
    font-size: 18px !important;
}
.ai-customer-showcase-swiper .swiper-button-next:hover,
.ai-customer-showcase-swiper .swiper-button-next:hover {
    background: rgba(0,0,0,1) !important;
}
.ai-customer-showcase-swiper .swiper-button-next:hover:after,
.ai-customer-showcase-swiper .swiper-button-prev:hover:after {
    color: #fff;
}
.ai-customer-showcase-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center; 
    justify-content: center;
    backdrop-filter: blur(10px);
}
.ai-cs-modal-inner {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-customer-showcase-modal-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid rgba(255,255,255,0.1);
}
.ai-customer-showcase-close {
    position: absolute;
    top: 0; 
    right: 10px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
    padding: 10px;
    transition: opacity 0.2s;
}
.ai-customer-showcase-close:hover {
    opacity: 0.7;
}
@media (max-width: 767px) {
}