.cds-swiper-container {
    width: 100%;
    padding: 20px 10px 50px;
    position: relative;
}

.cds-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: sans-serif;
    text-align: left;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cds-image-wrapper {
    height: 250px;
    overflow: hidden;
    background: #f4f4f4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cds-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cds-image-wrapper img {
         width: 70% !important;
    }
}

.cds-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cds-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #333;
}

.cds-details {
    margin-bottom: 20px;
}

.cds-details p {
    margin: 4px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.cds-spec {
    font-weight: 600;
    color: #2c3e50;
}

.cds-loc {
    color: #0073aa;
    margin-top: 8px !important;
    font-size: 12px;
}

/* Action Buttons Area */
.cds-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    /* Pushes buttons to bottom */
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.cds-phone-btn {
    width: 40px;
    height: 40px;
    background-color: #840f2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
}
.cds-phone-btn svg {
color:white;
}
.cds-book-btn {
    flex-grow: 1;
    text-align: center;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap;
}

.cds-book-btn:hover {
    background: #333;
    color: #fff;
}

