/* ========================================
   Wrapper
======================================== */

.ccs-wrapper {
    margin: 50px 0;
    position: relative;
}


/* ========================================
   Header (Arrows Top Right)
======================================== */

.ccs-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.ccs-arrows {
    display: flex;
    gap: 10px;
}


/* ========================================
   Arrow Buttons
======================================== */

.ccs-prev,
.ccs-next {
    background: #e59ab2;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.ccs-prev:hover,
.ccs-next:hover {
    background: #d7819d;
}


/* ========================================
   Carousel Container
======================================== */

.ccs-carousel {
    position: relative;
}

.ccs-slide {
    padding: 10px;
}


/* ========================================
   Card Design
======================================== */

.ccs-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.ccs-card:hover {
    transform: translateY(-5px);
}


/* ========================================
   Image
======================================== */

.ccs-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/* ========================================
   Content
======================================== */

.ccs-content {
    padding: 20px;
}

.ccs-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.ccs-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}


/* ========================================
   Button
======================================== */

.ccs-btn {
    display: inline-block;
    padding: 8px 22px;
    background: #e59ab2;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ccs-btn:hover {
    background: #d7819d;
    color: #000;
}


/* ========================================
   Slick Fixes (Important)
======================================== */

.ccs-carousel .slick-track {
    display: flex !important;
}

.ccs-carousel .slick-slide {
    height: auto;
}

.ccs-carousel .slick-slide > div {
    height: 100%;
}


/* ========================================
   Responsive
======================================== */

@media (max-width: 992px) {
    .ccs-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .ccs-header {
        justify-content: center;
    }

    .ccs-arrows {
        gap: 8px;
    }

    .ccs-prev,
    .ccs-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}