/* ===== YÊU THÍCH ===== */

.yt-page {
    padding: 28px 135px 60px;
    min-height: 60vh;
}

/* Controls row */
.yt-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.yt-count {
    font-size: 15px;
    color: #555;
    white-space: nowrap;
}

.yt-count strong {
    color: #222;
}

/* Filter tabs */
.yt-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.yt-tab {
    padding: 7px 18px;
    border-radius: 20px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.yt-tab:hover {
    border-color: #7ABEFA;
    color: #7ABEFA;
}

.yt-tab.active {
    background: #7ABEFA;
    border-color: #7ABEFA;
    color: #fff;
    font-weight: 600;
}

/* Card grid */
.yt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.yt-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
}

.yt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Image */
.yt-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.yt-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.yt-card:hover .yt-card-img-wrap img {
    transform: scale(1.04);
}

/* Heart button */
.yt-heart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #e53935;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
    z-index: 1;
}

.yt-heart-btn:hover {
    transform: scale(1.15);
    background: #fff;
}

/* Card body */
.yt-card-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.yt-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-card-price {
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.yt-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #555;
}

.yt-card-rating i {
    color: #f5a623;
    font-size: 11px;
}

.yt-card-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
}

.yt-card-loc i {
    font-size: 11px;
    color: #7ABEFA;
}

/* Type badge */
.yt-card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 2px;
    width: fit-content;
}

.yt-card-badge.tour        { background: #e8f4ff; color: #7ABEFA; }
.yt-card-badge.attraction  { background: #fff0e8; color: #f5813a; }
.yt-card-badge.hotel       { background: #e8fff2; color: #27ae60; }

/* Empty state */
.yt-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.yt-empty-icon {
    font-size: 56px;
    color: #ddd;
    margin-bottom: 20px;
}

.yt-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.yt-empty-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.yt-empty-btn {
    display: inline-block;
    background: #7ABEFA;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.yt-empty-btn:hover {
    opacity: 0.85;
}
