.clc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.clc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.clc-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.clc-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #f4f4f4;
}

.clc-card-titulo {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.clc-btn-whatsapp {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 22px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
}

.clc-btn-whatsapp:hover {
    background: #1ebe5b;
    color: #fff;
}

.clc-cat-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.clc-cat-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.clc-cat-chip:hover {
    border-color: #e2542a;
    color: #e2542a;
}

.clc-cat-chip-activo {
    background: #e2542a;
    border-color: #e2542a;
    color: #fff;
}

.clc-filtro-barra {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 8px;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px 0;
    z-index: 10;
}

.clc-filtro-barra select,
.clc-filtro-barra input[type="text"] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.clc-filtro-barra input[type="text"] {
    flex: 1;
    min-width: 200px;
}

.clc-filtro-estado {
    color: #777;
    font-size: 13px;
    margin: 4px 0 16px;
}

.clc-thumb-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 8px;
}
