
.cyc-product-carousel-block {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.cyc-product-carousel-block .carousel-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
    padding: 64px 30px;
}

/* Image Carousel */
.cyc-product-carousel-block .image-carousel {
    flex: 1;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    /* box-shadow removed as per your changes */
}

.cyc-product-carousel-block .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.cyc-product-carousel-block .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.cyc-product-carousel-block .carousel-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cyc-product-carousel-block .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f0f0f0;
    color: #555;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

/* Carousel Controls - UPDATED */
.cyc-product-carousel-block .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 2;
}

.cyc-product-carousel-block .carousel-control {
    background-color: #000000 !important;
    border-radius: 20% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    padding: 0 !important;
}

/* These specific styles ensure the SVG icons are visible in frontend */
.cyc-product-carousel-block .carousel-control svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.cyc-product-carousel-block .carousel-control:hover {
    background-color: #444140 !important;
}

/* Content Section */
.cyc-product-carousel-block .content-section {
    flex: 1;
    position: relative;
}

.cyc-product-carousel-block .content-title {
    font-size: 26px;
    font-weight: 400;
    color: #333;
    text-align: center;
}
.cyc-product-carousel-block .content-title b{
    font-weight: 800;
}
.cyc-product-carousel-block .content-subtitle {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000000;
    text-align: center;
}

/* Feature List */
.cyc-product-carousel-block .feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0!important;
}

.cyc-product-carousel-block .feature-list .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px!important;
    width: max-content;
}

.cyc-product-carousel-block .feature-list .feature-item:hover .feature-icon {
    background-color: #111111;
}

.cyc-product-carousel-block .feature-list .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffd700;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-out;
    margin-right: 10px!important;
}

.cyc-product-carousel-block .feature-list .feature-text {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

/* Editor Specific Styles */
.cyc-product-carousel-block .slide-settings h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cyc-product-carousel-block .slide-settings h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.editor-styles-wrapper .wp-block .cyc-product-carousel-block .content-title,
.editor-styles-wrapper .wp-block .cyc-product-carousel-block .content-subtitle {
    margin-top: 0;
}

@media (max-width: 768px) {
    .cyc-product-carousel-block .carousel-container {
        flex-direction: column;
        padding: 48px 16px;
    }
}

@media (max-width: 480px) {
    .cyc-product-carousel-block .carousel-container {
        padding: 48px 16px;
    }
    .cyc-product-carousel-block .feature-list .feature-text{
        font-size: 1rem;
    }
}