/* ============================================================
   TRANG GÓI VIP & COMBO — Compact Style (Tương đồng với Gói Dịch Vụ)
   ============================================================ */

.vip-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.vip-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.vip-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-surface-hover);
}

.vip-card.featured {
    border: 1.5px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--accent);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 112, 243, 0.25);
}

.vip-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vip-icon-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f59e0b;
    flex-shrink: 0;
}

.vip-title-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vip-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    margin: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.vip-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.vip-actions-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.vip-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}

.vip-price {
    font-weight: 700;
    font-size: 16px;
    color: #10b981;
}

.btn-buy-vip {
    padding: 7px 14px;
    font-size: 12px;
}
