.wccs-frontend-wrapper {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wccs-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.wccs-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.wccs-accordion-header:hover {
    background: #f1f5f9;
}

.wccs-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.wccs-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #eace1f; /* User requested #eace1f (Yellow) */
    border-radius: 2px;
}

.wccs-accordion-icon {
    font-size: 16px;
    font-weight: bold;
    color: #64748b;
    transition: transform 0.3s ease;
}

.wccs-accordion-item.wccs-active .wccs-accordion-icon {
    transform: rotate(180deg);
}

.wccs-accordion-content {
    display: none;
    padding: 30px 24px;
    border-top: 1px solid #e2e8f0;
}

.wccs-accordion-item.wccs-active .wccs-accordion-content {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.wccs-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.wccs-layout-left {
    flex-direction: row;
}

.wccs-layout-right {
    flex-direction: row-reverse;
}

.wccs-text-content {
    flex: 1;
    min-width: 300px;
}

.wccs-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.wccs-carousel-content {
    flex: 1.2;
    min-width: 300px;
    width: 100%;
}

/* Thumbs Swiper styles */
.wccs-swiper-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.wccs-swiper-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}
.wccs-swiper-main .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Yellow controls for Swiper */
.wccs-swiper-main .swiper-button-next,
.wccs-swiper-main .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.wccs-swiper-main .swiper-button-next:hover,
.wccs-swiper-main .swiper-button-prev:hover {
    background: #eace1f; /* Requested yellow #eace1f */
}

.wccs-swiper-main .swiper-button-next::after,
.wccs-swiper-main .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.wccs-swiper-thumbs {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
}
.wccs-swiper-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}
.wccs-swiper-thumbs .swiper-slide:hover {
    opacity: 0.8;
}
.wccs-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #eace1f; /* Active thumbnail outline */
}
.wccs-swiper-thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .wccs-section {
        flex-direction: column;
        gap: 20px;
    }
    .wccs-title {
        font-size: 18px;
    }
}
