.cps-slider-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    box-sizing: border-box;
}

.cps-slider-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cps-slider-title h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cps-all-btn {
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
}

.cps-slider-container {
    overflow: hidden;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    flex: 0 0 auto;
    box-sizing: border-box;
}

.cps-slide {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.cps-label {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 4px;
}

.cps-title {
    font-size: 16px;
    margin: 10px 0;
    min-height: 4.8em;
    line-height: 1.6;
}

.cps-price {
    margin: 5px 0;
}

.cps-price .old {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

.cps-price .new {
    color: red;
    font-weight: bold;
}

.cps-buttons {
    margin-top: 10px;
}

.cps-buttons .button {
    width: 100%;
    background: #c2a837;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.cps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 18px;
}

.cps-nav.prev {
    left: 0;
}

.cps-nav.next {
    right: 0;
}

/* WooCommerce product titles alignment */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    min-height: 4.8em;
    line-height: 1.6;
}