/* Layout Alignment Modifications for Slider Containers */
.cps-wrap {
    display: block; 
    width: 100%;
    margin: 0 auto;
    opacity: 0;
}
.cps-wrap.slick-initialized {
    opacity: 1;
}

/* Individual Slide Structural Item (Handles Grid Spacing Gaps) */
.cps-slide-item {
    padding: 0 12px;
    box-sizing: border-box;
}

/* Individual Item Card Structure */
.cps-card {
    border: 1px solid #dddddd;
    padding: 20px 15px;
    text-align: center;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    height: 100%;
}

.cps-thumb-wrapper img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.cps-title {
    margin: 10px 0 5px;
    line-height: 1.4;
}

.cps-price {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Adjustments for Navigation Elements */
.cps-wrap .slick-prev:before, 
.cps-wrap .slick-next:before {
    color: #000000;
}
.cps-wrap .slick-dots {
    bottom: -30px;
}