/* attractions.css — extracted from attractions.php */
/* === FILTER BAR === */
.uc-filters {
    max-width: 900px; margin: 0 auto;
    padding: clamp(12px, 3vw, 20px) 16px 0;
    display: flex; gap: 8px;
    overflow-x: auto; overflow-y: hidden;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.uc-filters::-webkit-scrollbar { display: none; }
.uc-filter-btn {
    padding: 8px 16px; border: none;
    background: #f1f5f9; border-radius: 20px;
    font-size: 0.72rem; font-weight: 800;
    color: #64748b; cursor: pointer;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap; flex-shrink: 0;
}
.uc-filter-btn:hover { background: #e2e8f0; }
.uc-filter-btn.active { background: var(--primary); color: #fff; }

/* === UNIFIED CARDS === */
.uc-section { max-width: 900px; margin: 0 auto; padding: clamp(20px, 4vw, 32px) 16px clamp(40px, 6vw, 60px); }

.uc-card {
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.uc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Category strip */
.uc-cat {
    min-width: 42px; max-width: 42px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.uc-cat-text {
    writing-mode: vertical-lr; transform: rotate(180deg);
    color: rgba(255,255,255,0.85); font-size: 0.58rem;
    font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; white-space: nowrap;
}

/* Image */
.uc-img {
    width: 120px; min-width: 120px;
    overflow: hidden; flex-shrink: 0;
    position: relative;
}
.uc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uc-rating {
    position: absolute; bottom: 6px; left: 6px;
    background: rgba(0,0,0,0.7); color: #fff;
    padding: 3px 8px; border-radius: 8px;
    font-size: 0.68rem; font-weight: 800;
    backdrop-filter: blur(4px);
}
.uc-rating i { color: #f1c40f; margin-right: 3px; }

/* Body */
.uc-body {
    flex: 1; padding: 12px 14px;
    display: flex; flex-direction: column;
    justify-content: center; min-width: 0;
}
.uc-label {
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; color: var(--accent);
    letter-spacing: 0.5px; margin-bottom: 3px;
}
.uc-title {
    font-size: 0.92rem; font-weight: 800; color: var(--primary);
    margin: 0 0 4px; line-height: 1.25;
}
.uc-desc {
    font-size: 0.78rem; color: #64748b; line-height: 1.5;
    margin: 0 0 6px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.uc-meta {
    display: flex; gap: 12px; font-size: 0.7rem;
    color: #94a3b8; font-weight: 600; margin-bottom: 2px;
}
.uc-meta i { margin-right: 3px; }
.uc-actions { display: flex; gap: 10px; margin-top: 6px; }
.uc-btn {
    font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    text-decoration: none; display: inline-flex;
    align-items: center; gap: 4px;
    color: var(--accent); background: none;
    border: none; padding: 0; cursor: pointer;
}
.uc-btn:hover { filter: brightness(0.85); }
.uc-btn-alt { color: var(--primary); }

/* Empty */
.uc-empty { text-align: center; padding: 50px 20px; color: #94a3b8; font-size: 0.9rem; }

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .uc-card { border-radius: 12px; }
    .uc-cat { min-width: 34px; max-width: 34px; }
    .uc-cat-text { font-size: 0.52rem; letter-spacing: 1px; }
    .uc-img { width: 90px; min-width: 90px; }
    .uc-body { padding: 10px 12px; }
    .uc-title { font-size: 0.85rem; }
    .uc-desc { font-size: 0.72rem; -webkit-line-clamp: 2; }
    .uc-filter-btn { padding: 7px 14px; font-size: 0.65rem; }
}
