/* ── Wrapper ── */
.cl-wrap {
    /*max-width: 900px;*/
    margin: 0 auto;
    font-family: "Plus Jakarta Sans", Sans-serif !important;
}

/* ── Search Bar ── */
.cl-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 6px 8px;
    margin-bottom: 28px;
    gap: 8px;
}

#cl-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 14px;
    background: transparent;
    color: #333;
}

a.cl-empty-btn.cl-empty-outline:focus {
    color: #3e3e3e;
}

a.cl-empty-btn.cl-empty-solid:focus {
    color: #fff;
}



/* ── Empty State ── */
.cl-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    padding-top: 0px;
}
.cl-empty-state svg {
    margin-bottom: 0px;
}
.cl-empty-state h3 {
    font-size: 28px;
    font-weight: 700;
    color: #464646;
    margin: 0 0 12px;
}

.cl-empty-btns a {
    text-decoration: none !important;
}


.cl-empty-btns a {
    box-shadow: 0px 2px 7px #75757591;
}


.cl-empty-btns a:hover {
    color: #fff !important;
    background: #104346;
}


.cl-empty-state p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}
.cl-empty-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cl-empty-btn {
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}
.cl-empty-outline {
    border: 1.5px solid #7c7b7b;
    color: #424242;
    background: #fff;
    font-size: 16px;
}

.cl-empty-outline:hover { background: #f5f5f5; }
.cl-empty-solid {
    background: #2bbfab;
    color: #fff;
    border: none;
    font-size: 16px;
}

.cl-empty-solid:hover { background: #22a898; }


#cl-clear-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
    padding: 6px 8px;
    line-height: 1;
    display: none; /* hidden until user types */
}
#cl-clear-btn:hover { color: #555; }

#cl-search-btn {
    background: #05a99d;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#cl-search-btn:hover {
    background: #07c9bb;
}


/* ── Grid ── */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 600px) {
    .cl-grid { grid-template-columns: 1fr; }
}

/* ── Card ── */
.cl-card {
    background: #f0f2f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.cl-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

.cl-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    background: #ddd;
}
.cl-card-img-placeholder {
    width: 100%;
    height: 210px;
    background: #cfd8dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90a4ae;
    font-size: 42px;
}

.cl-card-body {
    padding: 16px 18px 5px;
}

.cl-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.cl-card-address {
    font-size: 15px;
    color: #555;
    margin: 0 0 10px;
    line-height: 1.5;
    height: 68px;
    margin-bottom: 10px !important;
}

.cl-card-distance {
    font-size: 13.5px;
    color: #333;
    font-weight: 500;
}

/* ── Card Buttons ── */
.cl-card-footer {
    display: flex;
    gap: 10px;
    padding: 0 18px 18px;
    flex-wrap: wrap;
}

.cl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
    line-height: 1;
    cursor: pointer;
    border: none;
}

.cl-btn-map:hover {
    background: #028379;
}



.cl-btn:hover { transform: translateY(-1px); text-decoration: none; }

.cl-btn-book {
    background: #1a3c6e;
    color: #fff !important;
}
.cl-btn-book:hover { background: #14305a; }

.cl-btn-map {
    background: #05a99d;
    color: #ffffff !important;
    border: 1.5px solid #c5d5f5;
    text-decoration: none !important;
}

/* ── States ── */
.cl-loading,
.cl-no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 40px 0;
    font-size: 15px;
}
