/* Container Background */
.cps-section-container {
    background-color: #f9f9f9; /* Subtle grey background like the image */
    padding: 30px 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header Styling */
.cps-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 10px;
}

.cps-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cps-view-all {
    color: #2b61ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.cps-arrow {
    margin-left: 5px;
    border: 1.5px solid #2b61ff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Card Styling */
.cps-slider {
    overflow: visible !important; /* Peek effect */
}

.cps-card {
    background: #ffffff;
    border-radius: 20px; /* Highly rounded corners */
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cps-image-wrapper {
    width: 100%;
    margin-bottom: 12px;
}

.cps-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.cps-product-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.cps-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}