:root {
    --orange: #ffa500;
    --dark: #0f172a;
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bg-light { background-color: #f8fafc !important; }
.fw-800 { font-weight: 800; }
.ls-2 { letter-spacing: 2px; }
.text-outline-dark { color: transparent; -webkit-text-stroke: 1.5px var(--orange); }

/* --- PLACES HEADER --- */
.places-header { padding: 160px 0 60px; background: white; margin-bottom: 60px; }

/* --- FILTER BAR --- */
.filter-scroll-wrapper { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; }
.filter-scroll-wrapper::-webkit-scrollbar { display: none; }

.filter-pill {
    display: inline-block;
    padding: 10px 25px;
    margin: 0 5px;
    background: #f1f5f9;
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-pill.active, .filter-pill:hover {
    background: var(--orange);
    color: white;
}

/* --- PLACE CARDS V2 --- */
.place-card-v2 {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.place-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.pc-thumb {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.pc-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.place-card-v2:hover .pc-thumb img { transform: scale(1.1); }

.pc-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pc-body { padding: 25px; }

.pc-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.pc-body .description { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.address { display: flex; align-items: center; color: #94a3b8; font-size: 0.85rem; max-width: 60%; }
.address i { color: var(--orange); margin-right: 8px; }
.address span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.btn-view {
    background: var(--dark);
    color: white;
    padding: 8px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-view:hover {
    background: var(--orange);
    color: white;
}

@media (max-width: 768px) {
    .places-header { padding: 120px 0 40px; }
    .display-4 { font-size: 2.2rem; }
}